diff options
author | Alexander Belopolsky <abalkin@users.noreply.github.com> | 2018-02-10 19:22:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-10 19:22:23 -0500 |
commit | f38f267b62cee4cde1d8e245ce6acc642cb2bf91 (patch) | |
tree | 5de5f646858f019a4e3c791f4e36f19b58228395 | |
parent | 6784c826d9674915a4d89649c6288e6aecb4110d (diff) |
Fixed two typos in a comment.
-rw-r--r-- | example/jsondump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/jsondump.c b/example/jsondump.c index 4fb10fd51..a9f2c92d0 100644 --- a/example/jsondump.c +++ b/example/jsondump.c @@ -5,11 +5,11 @@ #include <errno.h> #include "../jsmn.h" -/* Function realloc_it() is a wrapper function for standart realloc() +/* Function realloc_it() is a wrapper function for standard realloc() * with one difference - it frees old memory pointer in case of realloc * failure. Thus, DO NOT use old data pointer in anyway after call to * realloc_it(). If your code has some kind of fallback algorithm if - * memory can't be re-allocated - use standart realloc() instead. + * memory can't be re-allocated - use standard realloc() instead. */ static inline void *realloc_it(void *ptrmem, size_t size) { void *p = realloc(ptrmem, size); |