From 417c87417c11b7a2e861916f1498b53f7ba53d2b Mon Sep 17 00:00:00 2001 From: imran Date: Thu, 31 Jul 2014 20:43:45 -0700 Subject: [PATCH] use CamelCase in error type declaration example to be consistent with type identifier convention --- NEP-1-:-Style-Guide-for-Nimrod-Code.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NEP-1-:-Style-Guide-for-Nimrod-Code.md b/NEP-1-:-Style-Guide-for-Nimrod-Code.md index fc1f76b..ead3f8d 100644 --- a/NEP-1-:-Style-Guide-for-Nimrod-Code.md +++ b/NEP-1-:-Style-Guide-for-Nimrod-Code.md @@ -79,7 +79,7 @@ be changed in the future. - Exception and Error types should have the "Error" suffix. ```nimrod - type unluckyError = object of E_Base + type UnluckyError = object of E_Base ``` - Unless marked with the `{.pure.}` pragma, members of enums should have an