From a826f22698c1871df4d71f66afe6426bcebed327 Mon Sep 17 00:00:00 2001 From: Henrique Limas Date: Thu, 3 Sep 2015 23:02:14 -0300 Subject: [PATCH] docs(di): fix typo "before before" Closes #3986 --- modules/angular2/docs/di/di.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/angular2/docs/di/di.md b/modules/angular2/docs/di/di.md index 5985676dbd..b5cbe3c7b4 100644 --- a/modules/angular2/docs/di/di.md +++ b/modules/angular2/docs/di/di.md @@ -218,7 +218,7 @@ The `someFactory` function does not have to know that it creates an object for ` ### Resolved Bindings -When DI receives `bind(Car).toClass(Car)`, it needs to do a few things before before it can create an instance of `Car`: +When DI receives `bind(Car).toClass(Car)`, it needs to do a few things before it can create an instance of `Car`: - It needs to reflect on `Car` to create a factory function. - It needs to normalize the dependencies (e.g., calculate lower and upper bounds).