From ffb9dc6cf95ebd2b3f051eae4981ec52852b6b9f Mon Sep 17 00:00:00 2001 From: Jamie Krug Date: Wed, 7 Mar 2018 13:37:28 -0500 Subject: [PATCH] docs: fix incorrect forms selector references (#22631) PR Close #22631 --- aio/content/guide/forms.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/aio/content/guide/forms.md b/aio/content/guide/forms.md index 7dc58f3ca3..66a1e36f10 100644 --- a/aio/content/guide/forms.md +++ b/aio/content/guide/forms.md @@ -152,7 +152,8 @@ nothing to distinguish it from any component you've written before. Understanding this component requires only the Angular concepts covered in previous pages. * The code imports the Angular core library and the `Hero` model you just created. -* The `@Component` selector value of "hero-form" means you can drop this form in a parent template with a `` tag. +* The `@Component` selector value of "app-hero-form" means you can drop this form in a parent +template with a `` tag. * The `templateUrl` property points to a separate file for the template HTML. * You defined dummy data for `model` and `powers`, as befits a demo.