docs(docs-infra): fix typo 'requiredSync' instead of 'requireSync'

This commit is contained in:
Bas ten Feld 2026-02-20 13:51:55 +01:00 committed by Jessica Janiuk
parent fc8140cff4
commit 57edfaf435

View file

@ -47,7 +47,7 @@ If you don't provide an `initialValue`, the resulting signal will return `undefi
Some Observables are guaranteed to emit synchronously, such as `BehaviorSubject`. In those cases, you can specify the `requireSync: true` option.
When `requiredSync` is `true`, `toSignal` enforces that the Observable emits synchronously on subscription. This guarantees that the signal always has a value, and no `undefined` type or initial value is required.
When `requireSync` is `true`, `toSignal` enforces that the Observable emits synchronously on subscription. This guarantees that the signal always has a value, and no `undefined` type or initial value is required.
### `manualCleanup`