Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Fix typo in Wikipedia link to minification #6377

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/content/tutorial/step_05.ngdoc
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down