diff options
-rw-r--r-- | v3f.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -22,10 +22,10 @@ * Variants missing the _ prefix for vector result operations return a pointer * and must be either supplied the result memory as the first "res" argument * which is then returned after being populated with the result's value, or - * NULL to allocate space for the result and that pointer is resturned after being + * NULL to allocate space for the result and that pointer is returned after being * populated with its value. When supplying NULL result pointers the functions * must allocate memory and thus may return NULL on OOM, so callers should - * check for NULL returns when supplying NULL for res. + * check for NULL returns when supplying NULL for "res". * * Example: * v3f_t foo, *foop; |