diff --git a/Style-Guide-for-Nim-Code.md b/Style-Guide-for-Nim-Code.md index acd4e98..240a901 100644 --- a/Style-Guide-for-Nim-Code.md +++ b/Style-Guide-for-Nim-Code.md @@ -79,8 +79,8 @@ changed in the future. ```nimrod type - handle = int64 # Will be used most often - handleRef = ref handle # Will be used less often + Handle = int64 # Will be used most often + HandleRef = ref Handle # Will be used less often ``` - Exception and Error types should have the "Error" suffix.