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

Update directive.ngdoc #9311

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/content/guide/directive.ngdoc
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ The **normalization** process is as follows:
1. Strip `x-` and `data-` from the front of the element/attributes.
2. Convert the `:`, `-`, or `_`-delimited name to `camelCase`.

Here are some equivalent examples of elements that match `ngBind`:
Here are some equivalent examples of elements which can match an attribute directive, in this case `ngBind`:

<example module="docsBindExample">
<file name="script.js">
Expand All @@ -83,6 +83,7 @@ Here are some equivalent examples of elements that match `ngBind`:
<span ng_bind="name"></span> <br/>
<span data-ng-bind="name"></span> <br/>
<span x-ng-bind="name"></span> <br/>
<span data:ng:bind="name"></span> <br/>
</div>
</file>
<file name="protractor.js" type="protractor">
Expand Down