atom / language-csharp

C# language support for Atom
Other
62 stars 53 forks source link

Correct scope name spelling in 'method-call' pattern #85

Closed tomchkk closed 7 years ago

tomchkk commented 7 years ago

Description of the Change

Corrected spelling of separator portion of scope name in method-call pattern:

Before

  "method-call":
   ...
    patterns: [
      {
        match: ","
        name: "punctuation.definition.seperator.parameter.cs"
      }

After

  "method-call":
   ...
    patterns: [
      {
        match: ","
        name: "punctuation.definition.separator.parameter.cs"
      }

Alternate Designs

All other occurrences of this scope name have the correct spelling of separator.

Benefits

Consistent spelling of scope names.

Possible Drawbacks

Will affect code trying to match incorrectly spelled scope.

Applicable Issues

n/a