File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -226,7 +226,7 @@ moved to the compile function for performance reasons.
226
226
To understand, let's look at a real-world example with `ngRepeat`:
227
227
228
228
```html
229
- Hello {{user}}, you have these actions:
229
+ Hello {{user.name }}, you have these actions:
230
230
<ul>
231
231
<li ng-repeat="action in user.actions">
232
232
{{action.description}}
@@ -236,7 +236,7 @@ Hello {{user}}, you have these actions:
236
236
237
237
When the above example is compiled, the compiler visits every node and looks for directives.
238
238
239
- `{{user}}` matches the {@link ng.$interpolate interpolation directive}
239
+ `{{user.name }}` matches the {@link ng.$interpolate interpolation directive}
240
240
and `ng-repeat` matches the {@link ng.directive:ngRepeat `ngRepeat` directive}.
241
241
242
242
But {@link ng.directive:ngRepeat ngRepeat} has a dilemma.
You can’t perform that action at this time.
0 commit comments