Skip to content

Commit

Permalink
Docs: Minor modification to code comments for clarity (#9821)
Browse files Browse the repository at this point in the history
  • Loading branch information
gov-ind authored and ilyavolodin committed Jan 9, 2018
1 parent b9da067 commit 601f851
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions docs/rules/keyword-spacing.md
Expand Up @@ -59,44 +59,44 @@ if (foo) {
//...
}

// no conflict with `array-bracket-spacing`
// Avoid conflict with `array-bracket-spacing`
let a = [this];
let b = [function() {}];

// no conflict with `arrow-spacing`
// Avoid conflict with `arrow-spacing`
let a = ()=> this.foo;

// no conflict with `block-spacing`
// Avoid conflict with `block-spacing`
{function foo() {}}

// no conflict with `comma-spacing`
// Avoid conflict with `comma-spacing`
let a = [100,this.foo, this.bar];

// not conflict with `computed-property-spacing`
// Avoid conflict with `computed-property-spacing`
obj[this.foo] = 0;

// no conflict with `generator-star-spacing`
// Avoid conflict with `generator-star-spacing`
function *foo() {}

// no conflict with `key-spacing`
// Avoid conflict with `key-spacing`
let obj = {
foo:function() {}
};

// no conflict with `object-curly-spacing`
// Avoid conflict with `object-curly-spacing`
let obj = {foo: this};

// no conflict with `semi-spacing`
// Avoid conflict with `semi-spacing`
let a = this;function foo() {}

// no conflict with `space-in-parens`
// Avoid conflict with `space-in-parens`
(function () {})();

// no conflict with `space-infix-ops`
// Avoid conflict with `space-infix-ops`
if ("foo"in {foo: 0}) {}
if (10+this.foo<= this.bar) {}

// no conflict with `jsx-curly-spacing`
// Avoid conflict with `jsx-curly-spacing`
let a = <A foo={this.foo} bar={function(){}} />
```

Expand Down Expand Up @@ -157,57 +157,57 @@ if (foo) {
//...
}

// not conflict with `array-bracket-spacing`
// Avoid conflict with `array-bracket-spacing`
let a = [this];

// not conflict with `arrow-spacing`
// Avoid conflict with `arrow-spacing`
let a = ()=> this.foo;

// not conflict with `comma-spacing`
// Avoid conflict with `comma-spacing`
let a = [100, this.foo, this.bar];

// not conflict with `computed-property-spacing`
// Avoid conflict with `computed-property-spacing`
obj[this.foo] = 0;

// not conflict with `generator-star-spacing`
// Avoid conflict with `generator-star-spacing`
function* foo() {}

// not conflict with `key-spacing`
// Avoid conflict with `key-spacing`
let obj = {
foo:function() {}
};

// not conflict with `func-call-spacing`
// Avoid conflict with `func-call-spacing`
class A {
constructor() {
super();
}
}

// not conflict with `object-curly-spacing`
// Avoid conflict with `object-curly-spacing`
let obj = {foo: this};

// not conflict with `semi-spacing`
// Avoid conflict with `semi-spacing`
let a = this;function foo() {}

// not conflict with `space-before-function-paren`
// Avoid conflict with `space-before-function-paren`
function() {}

// no conflict with `space-infix-ops`
// Avoid conflict with `space-infix-ops`
if ("foo"in{foo: 0}) {}
if (10+this.foo<= this.bar) {}

// no conflict with `space-unary-ops`
// Avoid conflict with `space-unary-ops`
function* foo(a) {
return yield+a;
}

// no conflict with `yield-star-spacing`
// Avoid conflict with `yield-star-spacing`
function* foo(a) {
return yield* a;
}

// no conflict with `jsx-curly-spacing`
// Avoid conflict with `jsx-curly-spacing`
let a = <A foo={this.foo} bar={function(){}} />
```

Expand Down

0 comments on commit 601f851

Please sign in to comment.