From 968c8e6876a7dcd036e75cc92a33b2ac67930ddb Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sat, 14 Oct 2017 13:31:00 -0400 Subject: math: vector: Fix a couple docstrings. --- chickadee/math/vector.scm | 4 ++-- 1 file 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! 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))) -- cgit v1.2.3