From 9f267ca80fc2f2d3c266508cd9474d91e07d9ccd Mon Sep 17 00:00:00 2001 From: Aristeidis Bampakos Date: Tue, 10 May 2016 13:22:59 +0300 Subject: [PATCH] docs(forms): Typo - missing space before "Now we can control" closes #1343 --- public/docs/ts/latest/guide/forms.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/guide/forms.jade b/public/docs/ts/latest/guide/forms.jade index d4850340e5..6c9a72d29b 100644 --- a/public/docs/ts/latest/guide/forms.jade +++ b/public/docs/ts/latest/guide/forms.jade @@ -486,7 +486,7 @@ figure.image-display and we only ever apply *one* of these directives to an element tag. Consistency rules! - Now we can control visibility of the "name" error message by binding properties of the `name` control to the message `
` element's `hidden` property. + Now we can control visibility of the "name" error message by binding properties of the `name` control to the message `
` element's `hidden` property. +makeExample('forms/ts/app/hero-form.component.html', 'hidden-error-msg', 'app/hero-form.component.html (excerpt)')