From 1d3df7885d5a4cf58b82e60e5a0d1b436c4e561d Mon Sep 17 00:00:00 2001 From: Jaskaran Singh Date: Sun, 5 Apr 2020 07:55:28 -0400 Subject: [PATCH] docs: correct the spelling mistake in observables error handling code (#36437) This commit fixes a spelling error in the word error in the observables.md guide. It is currently spelled errror and the mistake is not intentional. PR Close #36437 --- aio/content/guide/observables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/observables.md b/aio/content/guide/observables.md index 345f0c76db..fdf7c5ca96 100644 --- a/aio/content/guide/observables.md +++ b/aio/content/guide/observables.md @@ -112,7 +112,7 @@ Because observables produce values asynchronously, try/catch will not effectivel myObservable.subscribe({ next(num) { console.log('Next num: ' + num)}, - error(err) { console.log('Received an errror: ' + err)} + error(err) { console.log('Received an error: ' + err)} });