docs(ng-model-options): remove extra quotes in example

Remove unnecessary quotes around attribute directive name in the docs example.  This syntax is incorrect.

Closes #16362
This commit is contained in:
John Hampton
2017-12-06 17:00:53 -05:00
committed by George Kalpakas
parent a61c5d382e
commit 00815db8ef
+1 -1
View File
@@ -102,7 +102,7 @@ defaultModelOptions = new ModelOptions({
*
* The `ngModelOptions` settings are found by evaluating the value of the attribute directive as
* an AngularJS expression. This expression should evaluate to an object, whose properties contain
* the settings. For example: `<div "ng-model-options"="{ debounce: 100 }"`.
* the settings. For example: `<div ng-model-options="{ debounce: 100 }"`.
*
* ## Inheriting Options
*