From 55d0ed97c63ea3d256a7644b38c242aaa79389bd Mon Sep 17 00:00:00 2001 From: Joseph Orbegoso Pea Date: Fri, 4 Apr 2014 17:55:57 -0700 Subject: [PATCH] Made the sentence more clear. It was hard to understand. --- docs/content/tutorial/step_05.ngdoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) {...}