From 72265f796fb0dfade07f79f5028e1bc3d5c702e5 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 8823ed5348..bfb060ee0b 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, ... } }