aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsdesmond2013-07-10 08:42:34 -0600
committerPawel Kozlowski2013-07-10 22:58:43 +0200
commit3364d69a3bc017abdab840b818fa1ede903ea395 (patch)
tree25256a58aa733f94ea1d638cac61af3f469ea47a
parente6c9bfa4a90012f9f5115b1ec44e8981e5a41f49 (diff)
downloadangular.js-3364d69a3bc017abdab840b818fa1ede903ea395.tar.bz2
docs(guide): clarify example
-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>