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

Commit 254dcee

Browse files
Narretzcaitp
authored andcommitted
docs(guide/scope): fix links to $interpolate
Closes #6877
1 parent 69e5c36 commit 254dcee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/content/guide/scope.ngdoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ user enters text into the text field.
388388
1. the {@link ng.directive:ngModel ng-model} and {@link
389389
ng.directive:input input} {@link guide/directive
390390
directive} set up a `keydown` listener on the `<input>` control.
391-
2. the {@link ng.$interpolate &#123;&#123;name&#125;&#125; } interpolation
391+
2. the {@link ng.$interpolate interpolation}
392392
sets up a {@link ng.$rootScope.Scope#$watch $watch} to be notified of
393393
`name` changes.
394394
2. During the runtime phase:
@@ -400,8 +400,8 @@ user enters text into the text field.
400400
3. Angular applies the `name = 'X';` to the model.
401401
4. The {@link ng.$rootScope.Scope#$digest $digest} loop begins
402402
5. The {@link ng.$rootScope.Scope#$watch $watch} list detects a change
403-
on the `name` property and notifies the {@link ng.$interpolate
404-
&#123;&#123;name&#125;&#125; } interpolation, which in turn updates the DOM.
403+
on the `name` property and notifies the {@link ng.$interpolate interpolation},
404+
which in turn updates the DOM.
405405
6. Angular exits the execution context, which in turn exits the `keydown` event and with it
406406
the JavaScript execution context.
407407
7. The browser re-renders the view with update text.

0 commit comments

Comments
 (0)