docs(util): fix typos

Closes #3988
This commit is contained in:
mgechev 2015-09-04 09:55:01 +03:00 committed by Minko Gechev
parent d78261695b
commit 337ce21149
1 changed files with 2 additions and 2 deletions

View File

@ -164,10 +164,10 @@ function applyParams(fnOrArray: (Function | any[]), key: string): Function {
* ## Example with parameter annotations
*
* ```
* var MyService = neg.Class({
* var MyService = ng.Class({
* constructor: [String, [new Query(), QueryList], function(name, queryList) {
* ...
* }];
* }]
* });
* ```
*