Skip to content

Commit 40ecd2d

Browse files
brent-morrowIgorMinar
authored andcommitted
docs(guide/expression): wording changes
1 parent 484286d commit 40ecd2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/content/guide/expression.ngdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
@description
44

55
Expressions are JavaScript-like code snippets that are usually placed in bindings such as `{{
6-
expression }}`. Expressions are processed by {@link api/ng.$parse $parse}
6+
expression }}`. Expressions are processed by the {@link api/ng.$parse $parse}
77
service.
88

99
For example, these are all valid expressions in angular:
@@ -179,7 +179,7 @@ angular uses, to differentiate its API names from others. If angular didn't use
179179
`a.length()` would return undefined because neither a nor angular define such a property.
180180

181181
Consider that in a future version of Angular we might choose to add a length method, in which case
182-
the behavior of the expression would change. Worse yet, you the developer could create a length
182+
the behavior of the expression would change. Worse yet, you, the developer, could create a length
183183
property and then we would have a collision. This problem exists because Angular augments existing
184184
objects with additional behavior. By prefixing its additions with $ we are reserving our namespace
185185
so that angular developers and developers who use Angular can develop in harmony without collisions.

0 commit comments

Comments
 (0)