summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2017-10-14 13:31:00 -0400
committerDavid Thompson <dthompson2@worcester.edu>2017-10-14 13:31:00 -0400
commit968c8e6876a7dcd036e75cc92a33b2ac67930ddb (patch)
tree6efb8d52b32ade4ffcabe442dd0d4d6e1537ff76
parentc67e27cc9526e214c800b939ae038b4751f6e28b (diff)
math: vector: Fix a couple docstrings.
-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)))