From 78c680d6070e6015c376d616f4e8db3ad022f0aa Mon Sep 17 00:00:00 2001 From: Varriount Date: Fri, 18 Jul 2014 14:29:15 -0700 Subject: [PATCH] Updated NEP 1 (markdown) --- NEP-1.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/NEP-1.md b/NEP-1.md index 7ac5310..81b7646 100644 --- a/NEP-1.md +++ b/NEP-1.md @@ -21,14 +21,11 @@ General - Type identifiers should be in CamelCase. All other identifiers should be in pascalCase. ```nimrod - const - aConstant = 42 + const aConstant = 42 - var - aVariable = "Meep" + var aVariable = "Meep" - type - FooBar = object + type FooBar = object ``` - Members of enums should have an identifying prefix, such as an abbreviation