docs(guide/controller): fixed spelling of spiciness

Closes #7185
This commit is contained in:
Matthew Davies
2014-04-21 15:46:53 -07:00
committed by Igor Minar
parent 2dc2265e4f
commit 79d9fd9d57
+2 -2
View File
@@ -273,8 +273,8 @@ involves injecting the {@link ng.$rootScope $rootScope} and {@link ng.$controlle
myApp.controller('MyController', function($scope) {
$scope.spices = [{"name":"pasilla", "spiciness":"mild"},
{"name":"jalapeno", "spiceiness":"hot hot hot!"},
{"name":"habanero", "spiceness":"LAVA HOT!!"}];
{"name":"jalapeno", "spiciness":"hot hot hot!"},
{"name":"habanero", "spiciness":"LAVA HOT!!"}];
$scope.spice = "habanero";
});
```