From e4c5fe32e7f1e1bf397e5a10ab7cba2c5ab7c8d3 Mon Sep 17 00:00:00 2001 From: Ward Bell Date: Mon, 4 Jul 2016 15:07:12 -0700 Subject: [PATCH] docs(forms): fix import in sample HeroFormsComponent - @angular/common -> @angular/forms --- public/docs/_examples/forms/ts/app/hero-form.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/_examples/forms/ts/app/hero-form.component.ts b/public/docs/_examples/forms/ts/app/hero-form.component.ts index 7ea7c44738..e1a19c5cd9 100644 --- a/public/docs/_examples/forms/ts/app/hero-form.component.ts +++ b/public/docs/_examples/forms/ts/app/hero-form.component.ts @@ -2,7 +2,7 @@ // #docregion // #docregion first, final import { Component } from '@angular/core'; -import { NgForm } from '@angular/common'; +import { NgForm } from '@angular/forms'; import { Hero } from './hero';