Skip to content

Commit 579e1ff

Browse files
authored
fix(core): remove trailing comma in function signature (#10845)
Fix #10843
1 parent 2f7209c commit 579e1ff

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)