diff --git a/docs/content/guide/di.ngdoc b/docs/content/guide/di.ngdoc index f0ac64c8c29..9a8ac08e1ae 100644 --- a/docs/content/guide/di.ngdoc +++ b/docs/content/guide/di.ngdoc @@ -284,6 +284,7 @@ Here is an example of using the injector service: var myModule = angular.module('myModule', []); ``` +Notice that `myModule` depends upon no other modules as the second parameter is an empty array. Teach the injector how to build a `greeter` service. Notice that `greeter` is dependent on the `$window` service. The `greeter` service is an object that contains a `greet` method.