summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2019-05-06 21:27:19 -0700
committerVito Caputo <vcaputo@pengaru.com>2019-05-06 21:28:29 -0700
commit8de175240b972c0b2a7fd95b8cac1ebf1c0f7ec2 (patch)
tree27a1ffaf7be33986b9e6cf01e1d27098d779cd06
parent86f26e03952d306c3b971a7919a7e1f89883ce47 (diff)
v3f: fix typos in comment
-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