diff options
Diffstat (limited to 'docs/content')
| -rw-r--r-- | docs/content/guide/directive.ngdoc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc index 507910e4..116ed279 100644 --- a/docs/content/guide/directive.ngdoc +++ b/docs/content/guide/directive.ngdoc @@ -56,9 +56,9 @@ The following also **matches** `ngModel`: Angular **normalizes** an element's tag and attribute name to determine which elements match which directives. We typically refer to directives by their case-sensitive {@link http://en.wikipedia.org/wiki/CamelCase camelCase} **normalized** name (e.g. `ngModel`). -However, in the DOM, we refer to directives by case-insensitive forms, typically using -{@link http://en.wikipedia.org/wiki/Letter_case#Computers dash-delimited} attributes on DOM elements -(e.g. `ng-model`). +However, since HTML is case-insensitive, we refer to directives in the DOM by lower-case +forms, typically using {@link http://en.wikipedia.org/wiki/Letter_case#Computers dash-delimited} +attributes on DOM elements (e.g. `ng-model`). The **normalization** process is as follows: |
