Skip to content

Commit

Permalink
fix typo (#2112)
Browse files Browse the repository at this point in the history
  • Loading branch information
Luca Hendrik Helms authored Nov 13, 2022
1 parent a59ee4e commit 8f5ba72
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/svelte-tsc/src/proxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function createProgramProxy(
) {

if (!options.options.noEmit && !options.options.emitDeclarationOnly)
return doThrow('js emit is not support');
return doThrow('js emit is not supported');

if (!options.host)
return doThrow('!options.host');
Expand Down
4 changes: 2 additions & 2 deletions vue-language-tools/vue-tsc/src/proxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ export function createProgramProxy(
) {

if (!options.options.noEmit && !options.options.emitDeclarationOnly)
return doThrow('js emit is not support');
return doThrow('js emit is not supported');

if (!options.options.noEmit && options.options.noEmitOnError)
return doThrow('noEmitOnError is not support');
return doThrow('noEmitOnError is not supported');

if (!options.host)
return doThrow('!options.host');
Expand Down

0 comments on commit 8f5ba72

Please sign in to comment.