From d64d3320b4c3155f9395f148d7549dff18573892 Mon Sep 17 00:00:00 2001 From: Progger Date: Wed, 30 Dec 2015 19:06:52 -0600 Subject: [PATCH] docs(dependency-injection): typo closes #628 --- public/docs/ts/latest/guide/dependency-injection.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/guide/dependency-injection.jade b/public/docs/ts/latest/guide/dependency-injection.jade index dccd138bdd..b1a9370b5b 100644 --- a/public/docs/ts/latest/guide/dependency-injection.jade +++ b/public/docs/ts/latest/guide/dependency-injection.jade @@ -64,7 +64,7 @@ include ../../../../_includes/_util-fns We certainly don't want that going on during our tests. What if our `Car` should flash a warning signal when tire pressure is low. - How do we confirm that if actually does flash a warning + How do we confirm that it actually does flash a warning if we can't swap in low-pressure tires during the test? We have no control over the car's hidden dependencies.