8000 chore: fix typos [skip ci] by 180909 · Pull Request #12348 · vuejs/vue · GitHub
[go: up one dir, main page]

Skip to content

chore: fix typos [skip ci] #12348

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/weex-vue-framework/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function createInstanceContext (
data: data
};

// Each instance has a independent `Vue` module instance
// Each instance has an independent `Vue` module instance
var Vue = instance.Vue = createVueModuleInstance(instanceId, weex);

// DEPRECATED
Expand Down
2 changes: 1 addition & 1 deletion src/platforms/weex/entry-framework.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export function createInstanceContext (
data
}

// Each instance has a independent `Vue` module instance
// Each instance has an independent `Vue` module instance
const Vue = instance.Vue = createVueModuleInstance(instanceId, weex)

// DEPRECATED
Expand Down
2 changes: 1 addition & 1 deletion test/unit/features/component/component-async.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ describe('Component async', () => {
const oldClearTimeout = window.clearTimeout;

// will contain pending timeouts set during the test iteration
// will contain the id of the timeout as the key, and the the millisecond timeout as the value
// will contain the id of the timeout as the key, and the millisecond timeout as the value
// this helps to identify the timeout that is still pending
let timeoutsPending = {};

Expand Down
2 changes: 1 addition & 1 deletion test/unit/features/directives/on.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe('Directive v-on', () => {
expect(event.type).toBe('click')
})

it('should bind event to a inline statement', () => {
it('should bind event to an inline statement', () => {
vm = new Vue({
el,
template: '<div v-on:click="foo(1,2,3,$event)"></div>',
Expand Down
0