From 12b01f55543597d2b1754de5df67bb4802c3bf7c Mon Sep 17 00:00:00 2001 From: Aaditya Talwai Date: Wed, 6 Nov 2013 14:02:09 -0800 Subject: [PATCH] Update dev_guide.mvc.understanding_controller.ngdoc corrected " model property 'spice' " to " model property 'customSpice' " as indicated by the code sample --- docs/content/guide/dev_guide.mvc.understanding_controller.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guide/dev_guide.mvc.understanding_controller.ngdoc b/docs/content/guide/dev_guide.mvc.understanding_controller.ngdoc index 3cf1940d96f5..178e929187c9 100644 --- a/docs/content/guide/dev_guide.mvc.understanding_controller.ngdoc +++ b/docs/content/guide/dev_guide.mvc.understanding_controller.ngdoc @@ -200,7 +200,7 @@ previous example. Notice that the `SpicyCtrl` Controller now defines just one method called `spicy`, which takes one argument called `spice`. The template then refers to this Controller method and passes in a string -constant `'chili'` in the binding for the first button and a model property `spice` (bound to an +constant `'chili'` in the binding for the first button and a model property `customSpice` (bound to an input box) in the second button. ## Scope Inheritance Example