From 3a516e2bdd1111e03703964b4b0230b7a121500d Mon Sep 17 00:00:00 2001 From: NightKev Date: Mon, 2 Jun 2014 22:11:29 -0700 Subject: [PATCH] Update CONTRIBUTING.md `type *var;` is better than `type* var;` due to the case of `type* var1, var2;` where `var1` is `type*` but `var2` is `type`, thus causing confusion. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cb1067c92..4e6eba147 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -31,7 +31,7 @@ namespace Example { // Declare globals at the top int g_foo = 0; -char* g_some_pointer; // Notice the position of the * +char *g_some_pointer; // Notice the position of the * enum SomeEnum { COLOR_RED,