diff options
author | Scott Anderson <ascent12@hotmail.com> | 2017-08-20 20:35:43 +1200 |
---|---|---|
committer | Scott Anderson <ascent12@hotmail.com> | 2017-09-30 15:05:41 +1300 |
commit | deb90ae59debd9774a06f599776177fe9e425172 (patch) | |
tree | fa1a0ed132ecfcdb1c65d84e175a8147afba61ef | |
parent | e49aed8012b4e457d353e2ce1671520a45354e6e (diff) |
Changed "uninitialised" to "zeroed"
-rw-r--r-- | CONTRIBUTING.md | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c04694a9..f7899b73 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -119,9 +119,8 @@ pre-allocated memory (e.g. a member of a struct). * `create`/`destroy`: These also initialize/deinitialize, but will return a pointer to a `malloc`ed chunk of memory, and will `free` it in `destroy`. -A destruction function should always be able to accept a NULL pointer or an -otherwise uninitialised value and exit cleanly; this simplifies error handling -a lot. +A destruction function should always be able to accept a NULL pointer or a +zeroed value and exit cleanly; this simplifies error handling a lot. ### Error Codes |