aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/tutorial
diff options
context:
space:
mode:
authorbrettcannon2012-07-19 14:51:23 -0300
committerBrian Ford2012-07-19 11:05:38 -0700
commit6553fe68d17d42ec25e0c592ceaa1077cc0ec4f6 (patch)
tree47821a7663f687924632472e7d8aa957069fcb09 /docs/content/tutorial
parent13b5fd1b9d60f1a9187da8a89db9272284ccdac4 (diff)
downloadangular.js-6553fe68d17d42ec25e0c592ceaa1077cc0ec4f6.tar.bz2
fix(docs): Capitalize "URL".
Diffstat (limited to 'docs/content/tutorial')
-rw-r--r--docs/content/tutorial/step_10.ngdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/content/tutorial/step_10.ngdoc b/docs/content/tutorial/step_10.ngdoc
index b674f280..4fa87a1f 100644
--- a/docs/content/tutorial/step_10.ngdoc
+++ b/docs/content/tutorial/step_10.ngdoc
@@ -40,7 +40,7 @@ function PhoneDetailCtrl($scope, $routeParams, $http) {
</pre>
In the `PhoneDetailCtrl` controller, we created the `mainImageUrl` model property and set its
-default value to the first phone image url.
+default value to the first phone image URL.
We also created a `setImage` event handler function that will change the value of `mainImageUrl`.
@@ -66,7 +66,7 @@ We bound the `ngSrc` directive of the large image to the `mainImageUrl` property
We also registered an {@link api/ng.directive:ngClick `ngClick`}
handler with thumbnail images. When a user clicks on one of the thumbnail images, the handler will
use the `setImage` event handler function to change the value of the `mainImageUrl` property to the
-url of the thumbnail image.
+URL of the thumbnail image.
<div style="display: none">
TODO!