From d2e4f92126f82f685f9ef71c9ea0565ec93cb797 Mon Sep 17 00:00:00 2001 From: Sam Foo Date: Tue, 23 Mar 2021 14:48:02 -0700 Subject: [PATCH] Fix spelling in plugin template --- yeoman-generator/generators/app/templates/src/plugin.ts.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yeoman-generator/generators/app/templates/src/plugin.ts.tpl b/yeoman-generator/generators/app/templates/src/plugin.ts.tpl index bc56d99..82e15bd 100644 --- a/yeoman-generator/generators/app/templates/src/plugin.ts.tpl +++ b/yeoman-generator/generators/app/templates/src/plugin.ts.tpl @@ -1,4 +1,4 @@ -// core-js and regenerator-runtime are requried to ensure the correct polyfills +// core-js and regenerator-runtime are required to ensure the correct polyfills // are applied by babel/webpack. import "core-js/stable"; import "regenerator-runtime/runtime"; @@ -62,7 +62,7 @@ const <%= pluginClass %>: octant.PluginConstructor = class <%= pluginClass %> printHandler(request: octant.ObjectRequest): octant.PrintResponse { const myText = new TextFactory({ - value: "my **bold** and *emphisized* test", + value: "my **bold** and *emphasized* test", options: { isMarkdown: true }, }).toComponent();