Uppercased the first letter in the type identifiers

This commit is contained in:
Hans Raaf 2015-04-11 15:05:29 +02:00
parent 58bff71436
commit ad1c6c3313
1 changed files with 2 additions and 2 deletions

View File

@ -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.