From 3584874a144d1638b5a9b82c85e96e98c32574c8 Mon Sep 17 00:00:00 2001 From: Varriount Date: Fri, 2 Jan 2015 07:17:22 -0800 Subject: [PATCH] Updated NEP 1 : Style Guide for Nimrod Code (markdown) --- 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 71c0381..183862a 100644 --- a/NEP-1-:-Style-Guide-for-Nimrod-Code.md +++ b/NEP-1-:-Style-Guide-for-Nimrod-Code.md @@ -100,7 +100,7 @@ be changed in the future. ### Coding Conventions ### - The 'return' statement should only be used when it's control-flow properties are required. Use a procedures implicit 'result' variable instead. This improves - readably. + readability. - Prefer to return `[]` and `""` instead of `nil`, or throw an exception if that is appropriate.