aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStéphane Reynaud2014-01-21 13:05:48 +0100
committerBrian Ford2014-01-21 16:28:30 -0800
commit5b9ff6cf48d15eaf1a93748271e80bd7051889eb (patch)
treec9a70027399d5a113a4e9979c49269d774564737
parentf09b6aa5b58c090e3b8f8811fb7735e38d4b7623 (diff)
downloadangular.js-5b9ff6cf48d15eaf1a93748271e80bd7051889eb.tar.bz2
docs(guide/controller): fix duplicated "and" typo
Remove the second instance of the word "and" from the docs where it was duplicated.
-rw-r--r--docs/content/guide/controller.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/guide/controller.ngdoc b/docs/content/guide/controller.ngdoc
index 29c37709..a5878fb7 100644
--- a/docs/content/guide/controller.ngdoc
+++ b/docs/content/guide/controller.ngdoc
@@ -168,7 +168,7 @@ starts with capital letter and ends with "Ctrl" or "Controller".
- Assigning a property to `$scope` creates or updates the model.
- Controller methods can be created through direct assignment to scope (see the `chiliSpicy` method)
- The Controller methods and properties are available in the template (for the `<div>` element and
-and its children).
+its children).
## Spicy Arguments Example