From 4afbc16f053ffbfbd4f45d677056ff00d7711de7 Mon Sep 17 00:00:00 2001 From: tingzhou-sb <86281328+tingzhou-sb@users.noreply.github.com> Date: Thu, 11 Aug 2022 04:04:19 +0800 Subject: [PATCH] docs: fix typo word 'occurrance' in operators doc (#7010) --- docs_app/content/guide/operators.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs_app/content/guide/operators.md b/docs_app/content/guide/operators.md index 8d91033014..086e6a97b1 100644 --- a/docs_app/content/guide/operators.md +++ b/docs_app/content/guide/operators.md @@ -282,7 +282,7 @@ function discardOddDoubleEven() { ### Creating new operators from scratch -It is more complicated, but if you have to write an operator that cannot be made from a combination of existing operators (a rare occurrance), you can write an operator from scratch using the Observable constructor, like this: +It is more complicated, but if you have to write an operator that cannot be made from a combination of existing operators (a rare occurrence), you can write an operator from scratch using the Observable constructor, like this: ```ts import { Observable, of } from 'rxjs';