aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorsdesmond2013-07-10 08:42:34 -0600
committerPawel Kozlowski2013-07-10 22:57:26 +0200
commitcd11cc108300f7d9c3e3b90168c8b3c4ce14f535 (patch)
tree3d4e7762382823acd6e14e79c78eaf8438b09787 /docs
parent13469e83fc8062202c92e3e9ec44ab60ef96d819 (diff)
downloadangular.js-cd11cc108300f7d9c3e3b90168c8b3c4ce14f535.tar.bz2
docs(guide): clarify example
Diffstat (limited to 'docs')
-rw-r--r--docs/content/guide/dev_guide.services.injecting_controllers.ngdoc1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/content/guide/dev_guide.services.injecting_controllers.ngdoc b/docs/content/guide/dev_guide.services.injecting_controllers.ngdoc
index 2ddbec91..fbfed468 100644
--- a/docs/content/guide/dev_guide.services.injecting_controllers.ngdoc
+++ b/docs/content/guide/dev_guide.services.injecting_controllers.ngdoc
@@ -57,6 +57,7 @@ myController.$inject = ['$scope','notify'];
<p>Let's try this simple notify service, injected into the controller...</p>
<input ng-init="message='test'" ng-model="message" >
<button ng-click="callNotify(message);">NOTIFY</button>
+ <p>(you have to click 3 times to see an alert)</p>
</div>
</doc:source>
<doc:scenario>