From fbc27c9c99a1b4951cc826309b20fbbd325aaed1 Mon Sep 17 00:00:00 2001 From: desertapple Date: Wed, 26 Feb 2014 16:55:36 -0800 Subject: [PATCH] Update injector.js documentation Duplicate 'that' words present in the document, just remove one of them. --- 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 f71c7b3027c8..83bffb84a296 100644 --- a/src/auto/injector.js +++ b/src/auto/injector.js @@ -317,7 +317,7 @@ function annotate(fn) { * * {@link auto.$provide#factory factory(fn)} - registers a service **factory function**, `fn`, * that will be wrapped in a **service provider** object, whose `$get` property will contain the * given factory function. - * * {@link auto.$provide#service service(class)} - registers a **constructor function**, `class` that + * * {@link auto.$provide#service service(class)} - registers a **constructor function**, `class` * that will be wrapped in a **service provider** object, whose `$get` property will instantiate * a new object using the given constructor function. *