diff --git a/projects/ngrx.io/content/guide/signals/signal-method.md b/projects/ngrx.io/content/guide/signals/signal-method.md index eba95b8630..f9bd86ad05 100644 --- a/projects/ngrx.io/content/guide/signals/signal-method.md +++ b/projects/ngrx.io/content/guide/signals/signal-method.md @@ -44,7 +44,6 @@ export class NumbersComponent { ## Automatic Cleanup `signalMethod` uses an `effect` internally to track the Signal changes. - By default, the `effect` runs in the injection context of the caller. In the example above, that is `NumbersComponent`. That means, that the `effect` is automatically cleaned up when the component is destroyed. If the call happens outside an injection context, then the injector of the `signalMethod` is used. This would be the case, if `logDoubledNumber` runs in `ngOnInit`: