File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 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.
226226To understand, let's look at a real-world example with `ngRepeat`:
227227
228228```html
229- Hello {{user}}, you have these actions:
229+ Hello {{user.name }}, you have these actions:
230230<ul>
231231  <li ng-repeat="action in user.actions">
232232    {{action.description}}
@@ -236,7 +236,7 @@ Hello {{user}}, you have these actions:
236236
237237When the above example is compiled, the compiler visits every node and looks for directives.
238238
239- `{{user}}` matches the {@link ng.$interpolate interpolation directive}
239+ `{{user.name }}` matches the {@link ng.$interpolate interpolation directive}
240240and `ng-repeat` matches the {@link ng.directive:ngRepeat `ngRepeat` directive}.
241241
242242But {@link ng.directive:ngRepeat ngRepeat} has a dilemma.
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments