diff --git a/NEP-1-:-Style-Guide-for-Nimrod-Code.md b/NEP-1-:-Style-Guide-for-Nimrod-Code.md index d0c42b9..be25231 100644 --- a/NEP-1-:-Style-Guide-for-Nimrod-Code.md +++ b/NEP-1-:-Style-Guide-for-Nimrod-Code.md @@ -32,17 +32,16 @@ Spacing and Whitespace Conventions tedious, and not all editors have support for auto-alignment of code sections, plus re-alignment of code blocks causes larger, less distinct code diffs. - ```nimrod - # This is bad, as the next time someone comes to edit this code block, they - # must re-align all the assignments again: - type - WordBool* = int16 - CalType* = int - CalId* = int - LongLong* = int64 - LongLongPtr* = ptr LongLong - ``` -
+ ```nimrod + # This is bad, as the next time someone comes to edit this code block, they + # must re-align all the assignments again: + type + WordBool* = int16 + CalType* = int + CalId* = int + LongLong* = int64 + LongLongPtr* = ptr LongLong + ``` Naming Conventions ------------------