Skip to content

Commit

Permalink
chore: spelling and grammar (#11481)
Browse files Browse the repository at this point in the history
Co-authored-by: Shaun Case <shaunc@aja.com>
  • Loading branch information
warmsocks and Shaun Case committed Jul 1, 2020
1 parent 98b4d68 commit 8ead9d2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion flow/weex.js
Expand Up @@ -28,7 +28,7 @@ declare type WeexEnvironment = {
appName: string; // mobile app name or browser name
appVersion: string;

// informations of current running device
// information about current running device
deviceModel: string; // phone device model
deviceWidth: number;
deviceHeight: number;
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/parser/index.js
Expand Up @@ -380,7 +380,7 @@ export function parse (
}
},
comment (text: string, start, end) {
// adding anyting as a sibling to the root node is forbidden
// adding anything as a sibling to the root node is forbidden
// comments should still be allowed, but ignored
if (currentParent) {
const child: ASTText = {
Expand Down
6 changes: 3 additions & 3 deletions test/unit/features/directives/on.spec.js
Expand Up @@ -280,7 +280,7 @@ describe('Directive v-on', () => {
expect(spy.calls.count()).toBe(1)
})

it('should support system modifers with exact', () => {
it('should support system modifiers with exact', () => {
vm = new Vue({
el,
template: `
Expand Down Expand Up @@ -405,7 +405,7 @@ describe('Directive v-on', () => {
Vue.config.keyCodes = Object.create(null)
})

it('should override build-in keyCode', () => {
it('should override built-in keyCode', () => {
Vue.config.keyCodes.up = [1, 87]
vm = new Vue({
el,
Expand All @@ -420,7 +420,7 @@ describe('Directive v-on', () => {
e.keyCode = 1
})
expect(spy).toHaveBeenCalledTimes(2)
// should not affect build-in down keycode
// should not affect built-in down keycode
triggerEvent(vm.$el, 'keyup', e => {
e.keyCode = 40
})
Expand Down
2 changes: 1 addition & 1 deletion types/umd.d.ts
Expand Up @@ -7,7 +7,7 @@ import {
PropsDefinition
} from "./options";

// Expose some types for backword compatibility...
// Expose some types for backward compatibility...
declare namespace Vue {
// vue.d.ts
export type CreateElement = V.CreateElement;
Expand Down

5 comments on commit 8ead9d2

@luojianet
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这个commit有意思,帮尤大修复语法错误

@xieyicn
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这是检查错别字吗

@sanguogege
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

优秀啊!

@Mr-arvin
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice

@zhanfenghai
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

English is important

Please sign in to comment.