File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ import { defineComponent } from 'vue'
33
33
// named exports w/ variable declaration: ok
34
34
export const Foo = defineComponent (... )
35
35
36
- // named exports referencing vairable declaration: ok
36
+ // named exports referencing variable declaration: ok
37
37
const Bar = defineComponent (... )
38
38
export { Bar }
39
39
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ export async function handleHotUpdate({
104
104
// custom blocks update causes a reload
105
105
// because the custom block contents is changed and it may be used in JS.
106
106
if ( prevCustoms . length !== nextCustoms . length ) {
107
- // block rmeoved /added, force reload
107
+ // block removed /added, force reload
108
108
affectedModules . add ( mainModule )
109
109
} else {
110
110
for ( let i = 0 ; i < nextCustoms . length ; i ++ ) {
You can’t perform that action at this time.
0 commit comments