From 37c1fc6805d14a754d1cb9976704e6d7d8fa52c8 Mon Sep 17 00:00:00 2001 From: Alessandro Cosentino Date: Sat, 19 Jan 2013 14:06:35 -0500 Subject: [PATCH] Update developer_manual/codingguidelines.rst very small fixes while I read along... --- developer_manual/codingguidelines.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/developer_manual/codingguidelines.rst b/developer_manual/codingguidelines.rst index def207dbd..566097398 100644 --- a/developer_manual/codingguidelines.rst +++ b/developer_manual/codingguidelines.rst @@ -72,7 +72,7 @@ Control Structures * Always use { } for one line ifs * Split long ifs into multiple lines * Always use break in switch statements and prevent a default block with warnings if it shouldn't be accessed -* Dont put spaces between variable and assignments in for loops +* Do not put spaces between variable and assignments in for loops .. code-block:: php @@ -243,7 +243,7 @@ Control Structures * Always use { } for one line ifs * Split long ifs into multiple lines * Always use break in switch statements and prevent a default block with warnings if it shouldn't be accessed -* Dont put spaces between variable and assignments in for loops +* Do not put spaces between variable and assignments in for loops **DO**: @@ -284,7 +284,7 @@ CSS --- Take a look at the `Writing Tactical CSS & HTML `_ video on YouTube. -Don't bind your CSS to much to your HTML structure and try to avoid IDs. Also try to make your CSS reusable by grouping common attritubes into classes. +Don't bind your CSS too much to your HTML structure and try to avoid IDs. Also try to make your CSS reusable by grouping common attributes into classes. **DO**: @@ -302,7 +302,7 @@ Don't bind your CSS to much to your HTML structure and try to avoid IDs. Also tr color: red; } -**DONT**: +**DON'T**: .. code-block:: css @@ -315,4 +315,4 @@ Don't bind your CSS to much to your HTML structure and try to avoid IDs. Also tr display: inline-block; } -**TBD** \ No newline at end of file +**TBD**