Contributing.md: Fix a typo

This commit is contained in:
Lioncash 2015-05-10 17:26:26 -04:00
parent fcaaa9f649
commit 5037833083
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ Following this guide and formatting your code as detailed will likely get your p
- `class SomeClassName`
- `enum IPCCommandType`
- All compile time constants should be fully uppercased. With constants that have more than one word in them, use an underscore to separate them.
- `const int PI = 3.14159;`
- `const double PI = 3.14159;`
- `const int MAX_PATH = 260;`
- All variables should be lowercase with underscores separating the individual words in the name.
- `int this_variable_name;`