From e2cd8ffe1d00837f2a0b9fe233bca76d004f92c1 Mon Sep 17 00:00:00 2001 From: eltronix Date: Fri, 1 Jul 2016 16:46:10 +0300 Subject: [PATCH] docs(testing): Fixed typo in pipe.jade closes #1805 --- public/docs/ts/latest/testing/testing-an-angular-pipe.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/testing/testing-an-angular-pipe.jade b/public/docs/ts/latest/testing/testing-an-angular-pipe.jade index fbbe2f13e5..d98845e571 100644 --- a/public/docs/ts/latest/testing/testing-an-angular-pipe.jade +++ b/public/docs/ts/latest/testing/testing-an-angular-pipe.jade @@ -13,7 +13,7 @@ include ../_util-fns We already know *exactly* what we want the `uppercase` pipe to do. We could say our ...expectations... of it are very well defined. - We always use expectations our expectations to guide development, but sometimes it's hard to see the forest for the trees when we're right in the middle of coding. This is especially evident in larger tasks. + We always use our expectations to guide development, but sometimes it's hard to see the forest for the trees when we're right in the middle of coding. This is especially evident in larger tasks. So one thing we can do is put those expectations down as cold hard test code. We were going to test things manually anyway, so doing it *before* we have even one line of code isn't going to hurt.