@@ -123,7 +123,7 @@ angular.module('uiRouterSample.contacts', [
123
123
template : 'This is contacts.detail populating the "hint" ui-view'
124
124
} ,
125
125
126
- // This one is targeting the ui-view="menu " within the parent state's template.
126
+ // This one is targeting the ui-view="menuTip " within the parent state's template.
127
127
'menuTip' : {
128
128
// templateProvider is the final method for supplying a template.
129
129
// There is: template, templateUrl, and templateProvider.
@@ -168,7 +168,7 @@ angular.module('uiRouterSample.contacts', [
168
168
} ]
169
169
} ,
170
170
171
- // Here we see we are overriding the template that was set by 'contact .detail'
171
+ // Here we see we are overriding the template that was set by 'contacts .detail'
172
172
'hint@' : {
173
173
template : ' This is contacts.detail.item overriding the "hint" ui-view'
174
174
}
@@ -185,9 +185,9 @@ angular.module('uiRouterSample.contacts', [
185
185
. state ( 'contacts.detail.item.edit' , {
186
186
views : {
187
187
188
- // This is targeting the unnamed view within the 'contact .detail' state
189
- // essentially swapping out the template that 'contact .detail.item' had
190
- // had inserted with this state's template.
188
+ // This is targeting the unnamed view within the 'contacts .detail' state
189
+ // essentially swapping out the template that 'contacts .detail.item' had
190
+ // inserted with this state's template.
191
191
'@contacts.detail' : {
192
192
templateUrl : 'app/contacts/contacts.detail.item.edit.html' ,
193
193
controller : [ '$scope' , '$stateParams' , '$state' , 'utils' ,
@@ -203,4 +203,4 @@ angular.module('uiRouterSample.contacts', [
203
203
} ) ;
204
204
}
205
205
]
206
- ) ;
206
+ ) ;
0 commit comments