diff --git a/src/guide/component-custom-events.md b/src/guide/component-custom-events.md index 68d340d405..4b91982257 100644 --- a/src/guide/component-custom-events.md +++ b/src/guide/component-custom-events.md @@ -4,7 +4,7 @@ ## Event Names -Like components and props, event names provide an automatic case transformation. If you emit an event from the child component in camel case, you will be able to add a kebab-cased listener in the parent: +Like components and props, event names provide an automatic case transformation. If you emit an event from the child component in camelCase, you will be able to add a kebab-cased listener in the parent: ```js this.$emit('myEvent') diff --git a/src/guide/migration/vnode-lifecycle-events.md b/src/guide/migration/vnode-lifecycle-events.md index 25202ae338..8ad0b231b9 100644 --- a/src/guide/migration/vnode-lifecycle-events.md +++ b/src/guide/migration/vnode-lifecycle-events.md @@ -31,7 +31,7 @@ In Vue 3, the event name is prefixed with `vnode-`: ``` -Or just `vnode` if you're using camel case: +Or just `vnode` if you're using camelCase: ```html