diff --git a/docs/content/tutorial/step_05.ngdoc b/docs/content/tutorial/step_05.ngdoc index 5702a43899c1..a71bea8fa0b9 100644 --- a/docs/content/tutorial/step_05.ngdoc +++ b/docs/content/tutorial/step_05.ngdoc @@ -120,8 +120,8 @@ There are two ways to overcome issues caused by minification: phonecatApp.controller('PhoneListCtrl', PhoneListCtrl); ``` -* Use the inline bracket notation which wraps the function to be injected into an array of strings - (representing the dependency names) followed by the function to be injected: +* Use the inline bracket notation to wrap the required dependencies into an array of strings + (the dependency names) followed by the function that gets injected with those dependencies: ```js function PhoneListCtrl($scope, $http) {...}