docs(cookbook/dynamic_forms): fix a typo (#2857)

This commit is contained in:
Jordan Frankfurt 2016-11-22 16:49:05 -05:00 committed by Jesús Rodríguez
parent 434308ab1b
commit dde9969a42
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ include ../_util-fns
In our example we will be using Reactive Forms.
Reactive Forms belongs to a different `NgModule` called `ReactiveFormsModule`, so in order to access any Reactive Forms directives, we have to import `ReactiveFormsModule` from `AppModule`.
Reactive Forms belongs to a different `NgModule` called `ReactiveFormsModule`, so in order to access any Reactive Forms directives, we have to import `ReactiveFormsModule` from the `@angular/forms` library.
We bootstrap our `AppModule` in main.ts.