From 815c5de6cd24612cc1791252de1930d7a7015a9c Mon Sep 17 00:00:00 2001 From: ELI JOSEPH BRADLEY Date: Sun, 1 Oct 2017 07:49:08 -0500 Subject: [PATCH] Add spaces before comments for consistency. --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 5aafee6..4f1cabc 100644 --- a/README.md +++ b/README.md @@ -121,9 +121,9 @@ Use `#pragma mark -` to categorize methods in functional groupings and protocol/ **Preferred:** ```objc if (user.isHappy) { - //Do something + // Do something } else { - //Do something else + // Do something else } ``` @@ -131,10 +131,10 @@ if (user.isHappy) { ```objc if (user.isHappy) { - //Do something + // Do something } else { - //Do something else + // Do something else } ``` @@ -631,7 +631,7 @@ When coding with conditionals, the left hand margin of the code should be the "g return; } - //Do something important + // Do something important } ``` @@ -640,7 +640,7 @@ When coding with conditionals, the left hand margin of the code should be the "g ```objc - (void)someMethod { if ([someOther boolValue]) { - //Do something important + // Do something important } } ```