aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Campbell2013-08-02 09:49:07 -0400
committerPete Bacon Darwin2013-08-03 22:06:03 +0100
commited703d8e2c2d4c2f91fcd22ff319a2348f734ee6 (patch)
tree97a049a0cda576befb4ecab4def0ef11d43f0288
parent9c53d0769e045c76c29a18b6e2ff9709b3338a48 (diff)
downloadangular.js-ed703d8e2c2d4c2f91fcd22ff319a2348f734ee6.tar.bz2
docs(guide/controller): fix wording in list of 'Do not use'
Wording has been changed in two of the examples to read naturally. For example: From: 'Do not use controllers for to run stateless or stateful code shared across controllers' To: 'Do not use controllers for sharing stateless or stateful code across controllers' Closes #3454
-rw-r--r--docs/content/guide/dev_guide.mvc.understanding_controller.ngdoc5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/content/guide/dev_guide.mvc.understanding_controller.ngdoc b/docs/content/guide/dev_guide.mvc.understanding_controller.ngdoc
index c69ea915..5e49902e 100644
--- a/docs/content/guide/dev_guide.mvc.understanding_controller.ngdoc
+++ b/docs/content/guide/dev_guide.mvc.understanding_controller.ngdoc
@@ -75,10 +75,9 @@ you have to perform your own manual DOM manipulation, encapsulate the presentati
{@link guide/directive directives}.
- Input formatting — Use {@link forms angular form controls} instead.
- Output filtering — Use {@link dev_guide.templates.filters angular filters} instead.
-- To run stateless or stateful code shared across controllers — Use {@link dev_guide.services angular
+- Sharing stateless or stateful code across controllers — Use {@link dev_guide.services angular
services} instead.
-- To instantiate or manage the life-cycle of other components (for example, to create service
-instances).
+- Managing the life-cycle of other components (for example, to create service instances).
# Associating Controllers with Angular Scope Objects