From 303c1d0923a1f621ce42506e396972aeccdc181f Mon Sep 17 00:00:00 2001 From: AlexanderLukin Date: Tue, 21 Feb 2017 14:22:27 +0300 Subject: [PATCH 1/2] Fix typo (repeated file names) --- public/docs/ts/latest/guide/reactive-forms.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/guide/reactive-forms.jade b/public/docs/ts/latest/guide/reactive-forms.jade index ee70caccc2..b358265005 100644 --- a/public/docs/ts/latest/guide/reactive-forms.jade +++ b/public/docs/ts/latest/guide/reactive-forms.jade @@ -775,7 +775,7 @@ figure.image-display If you're coding along with the steps in this reactive forms tutorial, create the pertinent files based on the [source code displayed below](#source-code "Reactive Forms source code"). - Notice that `hero-list.component.ts` and `hero-list.component.ts` + Notice that `hero-list.component.ts` and `hero.service.ts` import `Observable` and `finally` from `rxjs`. Then return here to learn about _form array_ properties. From a3d9fb2829f7f6ba08600d9c020d7bc8884552c9 Mon Sep 17 00:00:00 2001 From: AlexanderLukin Date: Mon, 27 Feb 2017 17:49:46 +0300 Subject: [PATCH 2/2] Correct subparagraph Correct subparagraph in accordance with @kapunahelewong suggestion. Add separate info about imports from `rxjs` lib for `hero-list.component.ts` and `hero.service.ts`. --- public/docs/ts/latest/guide/reactive-forms.jade | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/docs/ts/latest/guide/reactive-forms.jade b/public/docs/ts/latest/guide/reactive-forms.jade index b358265005..09bd55620f 100644 --- a/public/docs/ts/latest/guide/reactive-forms.jade +++ b/public/docs/ts/latest/guide/reactive-forms.jade @@ -775,8 +775,8 @@ figure.image-display If you're coding along with the steps in this reactive forms tutorial, create the pertinent files based on the [source code displayed below](#source-code "Reactive Forms source code"). - Notice that `hero-list.component.ts` and `hero.service.ts` - import `Observable` and `finally` from `rxjs`. + Notice that `hero-list.component.ts` imports `Observable` and `finally` while `hero.service.ts` imports `Observable`, `of`, + and `delay` from `rxjs`. Then return here to learn about _form array_ properties. .l-main-section