From 3f5ead38456d19784d223cdb491cc3b1b015de40 Mon Sep 17 00:00:00 2001 From: Bernd Hacker Date: Mon, 29 Jan 2018 14:37:51 +0100 Subject: [PATCH] fix(aio): missing plural s in preserveWhiteSpaces example (#21854) PR Close #21854 --- aio/content/guide/aot-compiler.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/aot-compiler.md b/aio/content/guide/aot-compiler.md index 8b53f57585..6b8df03f89 100644 --- a/aio/content/guide/aot-compiler.md +++ b/aio/content/guide/aot-compiler.md @@ -92,7 +92,7 @@ You can control your app compilation by providing template compiler options in t }, "angularCompilerOptions": { "fullTemplateTypeCheck": true, - "preserveWhiteSpace": false, + "preserveWhiteSpaces": false, ... } }