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. *