Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit e4f23c4

Browse files
Olivier Giulieripetebacondarwin
Olivier Giulieri
authored andcommitted
docs(guide): fix spaces
Closes #10539
1 parent 8928d02 commit e4f23c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/content/guide/forms.ngdoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ A form is an instance of {@link form.FormController FormController}.
131131
The form instance can optionally be published into the scope using the `name` attribute.
132132

133133
Similarly, an input control that has the {@link ng.directive:ngModel ngModel} directive holds an
134-
instance of {@link ngModel.NgModelController NgModelController}.Such a control instance
134+
instance of {@link ngModel.NgModelController NgModelController}. Such a control instance
135135
can be published as a property of the form instance using the `name` attribute on the input control.
136136
The name attribute specifies the name of the property on the form instance.
137137

@@ -339,7 +339,7 @@ In the following example we create two directives:
339339
<div>
340340
Username:
341341
<input type="text" ng-model="name" name="name" username />{{name}}<br />
342-
<span ng-show="form.name.$pending.username">Checking if this name is available ...</span>
342+
<span ng-show="form.name.$pending.username">Checking if this name is available...</span>
343343
<span ng-show="form.name.$error.username">This username is already taken!</span>
344344
</div>
345345

0 commit comments

Comments
 (0)