Skip to content

Commit

Permalink
minor typos (#4011)
Browse files Browse the repository at this point in the history
  • Loading branch information
shreeve authored and yyx990803 committed Oct 22, 2016
1 parent 9c91190 commit 5f8ae40
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/core/vdom/create-component.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ function resolveAsyncComponent (
}

function extractProps (data: VNodeData, Ctor: Class<Component>): ?Object {
// we are only extrating raw values here.
// we are only extracting raw values here.
// validation and default values are handled in the child
// component itself.
const propOptions = Ctor.options.props
Expand Down
2 changes: 1 addition & 1 deletion src/platforms/web/runtime/directives/model.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export default {
setSelected(el, binding, vnode.context)
// in case the options rendered by v-for have changed,
// it's possible that the value is out-of-sync with the rendered options.
// detect such cases and filter out values that no longer has a matchig
// detect such cases and filter out values that no longer has a matching
// option in the DOM.
const needReset = el.multiple
? binding.value.some(v => hasNoMatchingOption(v, el.options))
Expand Down
2 changes: 1 addition & 1 deletion src/server/render-stream.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* @flow */

/**
* Original RenderStream implmentation by Sasha Aickin (@aickin)
* Original RenderStream implementation by Sasha Aickin (@aickin)
* Licensed under the Apache License, Version 2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
Expand Down

0 comments on commit 5f8ae40

Please sign in to comment.