aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content
diff options
context:
space:
mode:
authorJennifer Song2014-02-20 16:50:03 -0800
committerCaitlin Potter2014-02-21 01:19:26 -0500
commit58b01fac1ec80b34f2deb2fe87321a9de19ea6d7 (patch)
treebcf3e5a04f2fa25ac25c77be5bd17c9694e3990e /docs/content
parent84ad0a037c3316d9dbe1f893628c77fcbd19ec1b (diff)
downloadangular.js-58b01fac1ec80b34f2deb2fe87321a9de19ea6d7.tar.bz2
docs(tutorial/step-05): replace minify wiki link with shortened URL
marked has an existing bug where links ending with a ')' will not be parsed correctly. The workaround is to use a shortened URL. The original URL that is being replaced by this commit is http://en.wikipedia.org/wiki/Minification_(programming) . Closes #6377
Diffstat (limited to 'docs/content')
-rw-r--r--docs/content/tutorial/step_05.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/tutorial/step_05.ngdoc b/docs/content/tutorial/step_05.ngdoc
index f717528d..d00f95b0 100644
--- a/docs/content/tutorial/step_05.ngdoc
+++ b/docs/content/tutorial/step_05.ngdoc
@@ -109,7 +109,7 @@ properties are considered private, and should not be accessed or modified.
### A Note on Minification
Since Angular infers the controller's dependencies from the names of arguments to the controller's
-constructor function, if you were to [minify](http://en.wikipedia.org/wiki/Minification_(programming)) the JavaScript code for `PhoneListCtrl` controller, all of its function arguments would be
+constructor function, if you were to [minify](http://goo.gl/SAnnsm) the JavaScript code for `PhoneListCtrl` controller, all of its function arguments would be
minified as well, and the dependency injector would not be able to identify services correctly.
There are two ways to overcome issues caused by minification: