docs: fixed typo in documentation

Closes #6842
This commit is contained in:
Federico Caselli 2016-02-03 16:34:58 +01:00 committed by Igor Minar
parent e21718faa9
commit 9cb6dbbbab
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ import {CONST} from 'angular2/src/facade/lang';
* var t = new OpaqueToken("value");
*
* var injector = Injector.resolveAndCreate([
* provide(t, {useValue: "providedValue"})
* provide(t, {useValue: "bindingValue"})
* ]);
*
* expect(injector.get(t)).toEqual("bindingValue");