From 25bde176f098d7f77faa2392640f7acab679212a Mon Sep 17 00:00:00 2001 From: Freek van Gorkum Date: Fri, 31 Mar 2023 09:27:58 +0200 Subject: [PATCH] docs(deprecations): fix typo in breaking changes (#7237) (cherry picked from commit b753dadbfea2a7c5027739f39dd5aa2abda5e526) --- docs_app/content/deprecations/breaking-changes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs_app/content/deprecations/breaking-changes.md b/docs_app/content/deprecations/breaking-changes.md index 5d863af8f1..856b8428c6 100644 --- a/docs_app/content/deprecations/breaking-changes.md +++ b/docs_app/content/deprecations/breaking-changes.md @@ -28,7 +28,7 @@ - Type signatures tightened up around `Notification` and `dematerialize`, may uncover issues with invalid types passed to those operators. -- Experimental support for `for await` as been removed. Use https://github.com/benlesh/rxjs-for-await instead. +- Experimental support for `for await` has been removed. Use https://github.com/benlesh/rxjs-for-await instead. - `ReplaySubject` no longer schedules emissions when a scheduler is provided. If you need that behavior, please compose in `observeOn` using `pipe`, for example: `new ReplaySubject(2, 3000).pipe(observeOn(asap))`