From defd45ccbadb7e0e347b1999d48fe354998ba37a Mon Sep 17 00:00:00 2001 From: Brandon Max Date: Mon, 24 Oct 2016 08:25:07 -0400 Subject: [PATCH] Typo fix: optimizier -> optimizer (#4015) --- src/compiler/optimizer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/optimizer.js b/src/compiler/optimizer.js index 45ebb3fe..03855d6f 100644 --- a/src/compiler/optimizer.js +++ b/src/compiler/optimizer.js @@ -8,7 +8,7 @@ let isPlatformReservedTag const genStaticKeysCached = cached(genStaticKeys) /** - * Goal of the optimizier: walk the generated template AST tree + * Goal of the optimizer: walk the generated template AST tree * and detect sub-trees that are purely static, i.e. parts of * the DOM that never needs to change. *