summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chickadee/math/vector.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/chickadee/math/vector.scm b/chickadee/math/vector.scm
index cdc9b82..28a5973 100644
--- a/chickadee/math/vector.scm
+++ b/chickadee/math/vector.scm
@@ -176,12 +176,12 @@ polar coordinate (R, THETA)."
(set-record-type-printer! <vec3> display-vec3)
(define (vec2-copy! source-vec2 target-vec2)
- "Copy TARGET-VEC2 to SOURCE-VEC2."
+ "Copy SOURCE-VEC2 to TARGET-VEC2."
(set-vec2-x! target-vec2 (vec2-x source-vec2))
(set-vec2-y! target-vec2 (vec2-y source-vec2)))
(define (vec3-copy! source-vec3 target-vec3)
- "Copy TARGET-VEC3 to SOURCE-VEC3."
+ "Copy SOURCE-VEC3 to TARGET-VEC3."
(set-vec3-x! target-vec3 (vec3-x source-vec3))
(set-vec3-y! target-vec3 (vec3-y source-vec3)))