diff --git a/docs/content/guide/forms.ngdoc b/docs/content/guide/forms.ngdoc
index 370ffbe3..e25c12fd 100644
--- a/docs/content/guide/forms.ngdoc
+++ b/docs/content/guide/forms.ngdoc
@@ -27,8 +27,8 @@ for other directives to augment its behavior.
E-mail:
Gender: male
female
-
-
+
+
form = {{user | json}}
master = {{master | json}}
@@ -77,29 +77,29 @@ To allow styling of form as well as controls, `ngModel` adds these CSS classes:
The following example uses the CSS to display validity of each form control.
In the example both `user.name` and `user.email` are required, but are rendered
-with red background only when they are dirty. This ensures that the user is not distracted
-with an error until after interacting with the control, and failing to satisfy its validity.
+with red background only after the input is blurred (loses focus).
+This ensures that the user is not distracted with an error until after interacting with the control,
+and failing to satisfy its validity.