Skip to content

Commit 5f8ae40

Browse files
shreeveyyx990803
authored andcommitted
minor typos (#4011)
1 parent 9c91190 commit 5f8ae40

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/core/vdom/create-component.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ function resolveAsyncComponent (
236236
}
237237

238238
function extractProps (data: VNodeData, Ctor: Class<Component>): ?Object {
239-
// we are only extrating raw values here.
239+
// we are only extracting raw values here.
240240
// validation and default values are handled in the child
241241
// component itself.
242242
const propOptions = Ctor.options.props

src/platforms/web/runtime/directives/model.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export default {
5959
setSelected(el, binding, vnode.context)
6060
// in case the options rendered by v-for have changed,
6161
// it's possible that the value is out-of-sync with the rendered options.
62-
// detect such cases and filter out values that no longer has a matchig
62+
// detect such cases and filter out values that no longer has a matching
6363
// option in the DOM.
6464
const needReset = el.multiple
6565
? binding.value.some(v => hasNoMatchingOption(v, el.options))

src/server/render-stream.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* @flow */
22

33
/**
4-
* Original RenderStream implmentation by Sasha Aickin (@aickin)
4+
* Original RenderStream implementation by Sasha Aickin (@aickin)
55
* Licensed under the Apache License, Version 2.0
66
* http://www.apache.org/licenses/LICENSE-2.0
77
*

0 commit comments

Comments
 (0)