From 02e93e41bd9d0db0e3da0b8accb87b185735102c Mon Sep 17 00:00:00 2001 From: Caitlin Potter Date: Mon, 30 Sep 2013 18:56:41 -0400 Subject: [PATCH] docs($injector): Reword `fn` param docs and link to DI information --- src/auto/injector.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auto/injector.js b/src/auto/injector.js index 96ea0bf45c2..1912f28ed09 100644 --- a/src/auto/injector.js +++ b/src/auto/injector.js @@ -147,7 +147,7 @@ function annotate(fn) { * @description * Invoke the method and supply the method arguments from the `$injector`. * - * @param {!function} fn The function to invoke. The function arguments come form the function annotation. + * @param {!function} fn The function to invoke. Function parameters are injected according to the {@link http://docs.angularjs.org/guide/di $inject Annotation} rules. * @param {Object=} self The `this` for the invoked method. * @param {Object=} locals Optional object. If preset then any argument names are read from this object first, before * the `$injector` is consulted.