From 337ce2114949970d704e5cdbd0e5969842dc019f Mon Sep 17 00:00:00 2001 From: mgechev Date: Fri, 4 Sep 2015 09:55:01 +0300 Subject: [PATCH] docs(util): fix typos Closes #3988 --- modules/angular2/src/core/util/decorators.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/angular2/src/core/util/decorators.ts b/modules/angular2/src/core/util/decorators.ts index 73d78230b9..18b115dcba 100644 --- a/modules/angular2/src/core/util/decorators.ts +++ b/modules/angular2/src/core/util/decorators.ts @@ -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) { * ... - * }]; + * }] * }); * ``` *