From 87a4c058c202abf788984eae1c3baf517742b5bf Mon Sep 17 00:00:00 2001 From: thorn0 Date: Tue, 7 Oct 2014 01:15:05 +0300 Subject: [PATCH] docs(angular.injector): injectors aren't functions --- src/auto/injector.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/auto/injector.js b/src/auto/injector.js index b110463ea479..bc8b987f385e 100644 --- a/src/auto/injector.js +++ b/src/auto/injector.js @@ -7,13 +7,13 @@ * @kind function * * @description - * Creates an injector function that can be used for retrieving services as well as for + * Creates an injector object that can be used for retrieving services as well as for * dependency injection (see {@link guide/di dependency injection}). * * @param {Array.} modules A list of module functions or their aliases. See * {@link angular.module}. The `ng` module must be explicitly added. - * @returns {function()} Injector function. See {@link auto.$injector $injector}. + * @returns {function()} Injector object. See {@link auto.$injector $injector}. * * @example * Typical usage