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

Commit

Permalink
docs($interpolate): fix typo
Browse files Browse the repository at this point in the history
There was missing `JS` at line 141.

Closes #15817
  • Loading branch information
Xazzzi authored and Narretz committed Mar 15, 2017
1 parent 38f8c97 commit 0c3620b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ng/interpolate.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ function $InterpolateProvider() {
* ```js
* var $interpolate = ...; // injected
* var exp = $interpolate('Hello {{name | uppercase}}!');
* expect(exp({name:'AngularJS'})).toEqual('Hello ANGULAR!');
* expect(exp({name:'AngularJS'})).toEqual('Hello ANGULARJS!');
* ```
*
* `$interpolate` takes an optional fourth argument, `allOrNothing`. If `allOrNothing` is
Expand Down

0 comments on commit 0c3620b

Please sign in to comment.