We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0db88f3 commit a80921bCopy full SHA for a80921b
modules/angular2/src/di/binding.ts
@@ -397,8 +397,8 @@ export class BindingBuilder {
397
*
398
* ```javascript
399
* var injector = Injector.resolveAndCreate([
400
- * bind(Number).toFactory(() => { return 1+2; }}),
401
- * bind(String).toFactory((v) => { return "Value: " + v; }, [Number] })
+ * bind(Number).toFactory(() => { return 1+2; }),
+ * bind(String).toFactory((v) => { return "Value: " + v; }, [Number])
402
* ]);
403
404
* expect(injector.get(Number)).toEqual(3);
0 commit comments