From 5037833083cd9798da6bd1b0f0cd1ee46560d750 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 10 May 2015 17:26:26 -0400 Subject: [PATCH] Contributing.md: Fix a typo --- Contributing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Contributing.md b/Contributing.md index 8784f85fbb..9c63e74b07 100644 --- a/Contributing.md +++ b/Contributing.md @@ -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;`