summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--v3f.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/v3f.h b/v3f.h
index 9c1d6e4..79aea72 100644
--- a/v3f.h
+++ b/v3f.h
@@ -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;
© All Rights Reserved