From 7148bcd67da3048bf212c2f580c9819b25799b28 Mon Sep 17 00:00:00 2001 From: Jean Benitez Date: Tue, 18 Jun 2019 17:27:39 -0500 Subject: [PATCH] :pencil: Fix small typo (necesary -> necessary) --- .../transformers/decorators-to-static/component-decorator.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/transformers/decorators-to-static/component-decorator.ts b/src/compiler/transformers/decorators-to-static/component-decorator.ts index 43d5b150d93..abc84253ba8 100644 --- a/src/compiler/transformers/decorators-to-static/component-decorator.ts +++ b/src/compiler/transformers/decorators-to-static/component-decorator.ts @@ -92,7 +92,7 @@ function validateComponent(config: d.Config, diagnostics: d.Diagnostic[], typeCh if (otherDecorator) { const err = buildError(diagnostics); err.messageText = `Classes decorated with @Component can not be decorated with more decorators. - Stencil performs extensive static analysis on top of your components in order to generate the necesary metadata, runtime decorators at the components level make this task very hard.`; + Stencil performs extensive static analysis on top of your components in order to generate the necessary metadata, runtime decorators at the components level make this task very hard.`; augmentDiagnosticWithNode(config, err, otherDecorator); return false; }