From 07d33d4e5abaad4c397f0554840d60dc08065830 Mon Sep 17 00:00:00 2001 From: Judy Bogart Date: Fri, 23 Mar 2018 10:50:45 -0700 Subject: [PATCH] docs: fix operator name (#22920) PR Close #22920 --- aio/content/guide/reactive-forms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/reactive-forms.md b/aio/content/guide/reactive-forms.md index c7fcbdaa1c..c7cf260f44 100644 --- a/aio/content/guide/reactive-forms.md +++ b/aio/content/guide/reactive-forms.md @@ -940,7 +940,7 @@ with that hero's data values. A refresh button clears the hero list and the current selected hero before refetching the heroes. -Notice that `hero-list.component.ts` imports `Observable` and the `finally` operator, while `hero.service.ts` imports `Observable`, `of` and the `delay` operator from `rxjs`. +Notice that `hero-list.component.ts` imports `Observable` and the `finalize` operator, while `hero.service.ts` imports `Observable`, `of`, and the `delay` operator from `rxjs`. The remaining `HeroListComponent` and `HeroService` implementation details are beyond the scope of this tutorial. However, the techniques involved are covered elsewhere in the documentation, including the _Tour of Heroes_