Skip to content

Commit

Permalink
Corrected incoherences on the code style.
Browse files Browse the repository at this point in the history
  • Loading branch information
Symbianx authored Jul 27, 2017
1 parent 8fd1115 commit caae468
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ We use the [normal .NET coding guidelines](https://docs.microsoft.com/en-us/dotn
* Use 4 spaces for indentation (no tabs)
* Use `camelCase` for private fiels (do not use `_` )
* Use `this.` when accessing instance members
* Always specify member visibility, even if it's the default (i.e. `private string _foo;` not `string _foo;`)
* Always specify member visibility, even if it's the default (i.e. `private string foo;` not `string foo;`)
* All public members must be documented

A StyleCop ruleset is included with the project, and the analyser is run for every build. Any StyleCop violation is considered as a Warning. Pull requests with incorrect styling will be rejected.
Expand Down Expand Up @@ -55,4 +55,4 @@ Some things that will increase the chance that your pull request is accepted:

* Write tests.
* Follow our [code style](#code-style).
* Write a good commit message.
* Write a good commit message.

0 comments on commit caae468

Please sign in to comment.