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

Commit 6a743f0

Browse files
stevemaoNarretz
authored andcommitted
docs(ngModelOptions): make object notation style consistent
There is a space before and after `{` and `}` for most of the objects throughout the docs. Closes #11871
1 parent 31f6f76 commit 6a743f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ng/directive/ngModel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1101,7 +1101,7 @@ var DEFAULT_REGEXP = /(\s+|^)default(\s+|$)/;
11011101
* - `debounce`: integer value which contains the debounce model update value in milliseconds. A
11021102
* value of 0 triggers an immediate update. If an object is supplied instead, you can specify a
11031103
* custom value for each event. For example:
1104-
* `ng-model-options="{ updateOn: 'default blur', debounce: {'default': 500, 'blur': 0} }"`
1104+
* `ng-model-options="{ updateOn: 'default blur', debounce: { 'default': 500, 'blur': 0 } }"`
11051105
* - `allowInvalid`: boolean value which indicates that the model can be set with values that did
11061106
* not validate correctly instead of the default behavior of setting the model to undefined.
11071107
* - `getterSetter`: boolean value which determines whether or not to treat functions bound to

0 commit comments

Comments
 (0)