Skip to content

Commit 0d38339

Browse files
authored
fix(core): remove trailing comma in function signature
Fix #10843
1 parent fd0eaf9 commit 0d38339

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/vdom/create-component.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ export function createComponent (
207207

208208
export function createComponentInstanceForVnode (
209209
vnode: any, // we know it's MountedComponentVNode but flow doesn't
210-
parent: any, // activeInstance in lifecycle state
210+
parent: any // activeInstance in lifecycle state
211211
): Component {
212212
const options: InternalComponentOptions = {
213213
_isComponent: true,

0 commit comments

Comments
 (0)