docs(guide/Components): fix small single letter typo

line 136: 'not' should be 'note'

Closes #14390
This commit is contained in:
Andrew
2016-04-07 07:40:00 -07:00
committed by Martin Staffa
parent 2b327f01be
commit c75fb80333
+1 -1
View File
@@ -133,7 +133,7 @@ components should follow a few simple conventions:
For a deletion, that means the component doesn't delete the `hero` itself, but sends it back to
the owner component via the correct event.
```html
<!-- not that we use snake case for bindings in the template as usual -->
<!-- note that we use snake case for bindings in the template as usual -->
<editable-field on-update="$ctrl.update('location', value)"></editable-field><br>
<button ng-click="$ctrl.onDelete({hero: $ctrl.hero})">Delete</button>
```