From 41c2228d4996e0c995b0242d94cc8ef78d873196 Mon Sep 17 00:00:00 2001 From: Josh Wiegand Date: Wed, 14 Oct 2020 22:28:29 -0400 Subject: [PATCH] docs: clarify grammatical error (#39279) The sentence is grammatically incorrect. The new sentence fixes the error. PR Close #39279 --- aio/content/tutorial/toh-pt6.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/tutorial/toh-pt6.md b/aio/content/tutorial/toh-pt6.md index 2119f720d9..b8858eff5b 100644 --- a/aio/content/tutorial/toh-pt6.md +++ b/aio/content/tutorial/toh-pt6.md @@ -180,7 +180,7 @@ give it a `catchError()` operator. The `catchError()` operator intercepts an **`Observable` that failed**. -It passes the error an error handler that can do what it wants with the error. +The operator then passes the error to the error handling function. The following `handleError()` method reports the error and then returns an innocuous result so that the application keeps working.