Updated NEP 1 (markdown)
This commit is contained in:
parent
6f30eb7f56
commit
78c680d607
9
NEP-1.md
9
NEP-1.md
|
@ -21,14 +21,11 @@ General
|
||||||
- Type identifiers should be in CamelCase. All other identifiers should be in
|
- Type identifiers should be in CamelCase. All other identifiers should be in
|
||||||
pascalCase.
|
pascalCase.
|
||||||
```nimrod
|
```nimrod
|
||||||
const
|
const aConstant = 42
|
||||||
aConstant = 42
|
|
||||||
|
|
||||||
var
|
var aVariable = "Meep"
|
||||||
aVariable = "Meep"
|
|
||||||
|
|
||||||
type
|
type FooBar = object
|
||||||
FooBar = object
|
|
||||||
```
|
```
|
||||||
|
|
||||||
- Members of enums should have an identifying prefix, such as an abbreviation
|
- Members of enums should have an identifying prefix, such as an abbreviation
|
||||||
|
|
Loading…
Reference in New Issue