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

View File

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