From 0713f3565345831d76ddd00865f07515d54d59db Mon Sep 17 00:00:00 2001 From: Jonas Felix Date: Thu, 2 Feb 2017 22:14:54 +0100 Subject: [PATCH] docs(pipes): typo in pure pipe chapter - "is is" - "it is" (#3180) --- public/docs/ts/latest/guide/pipes.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/guide/pipes.jade b/public/docs/ts/latest/guide/pipes.jade index 5b8e855f26..b506e4d5f1 100644 --- a/public/docs/ts/latest/guide/pipes.jade +++ b/public/docs/ts/latest/guide/pipes.jade @@ -295,7 +295,7 @@ block pure-change Angular ignores changes *within* (composite) objects. It won't call a pure pipe if we change an input month, add to an input #{_array}, or update an input object property. - This may seem restrictive but is is also fast. + This may seem restrictive but it is also fast. An object reference check is fast — much faster than a deep check for differences — so Angular can quickly determine if it can skip both the pipe execution and a view update.