SRFI-43: vector-concatenate: Fix error message.
authorMark H Weaver <mhw@netris.org>
Sat, 20 Sep 2014 08:09:14 +0000 (04:09 -0400)
committerMark H Weaver <mhw@netris.org>
Sat, 20 Sep 2014 09:44:15 +0000 (05:44 -0400)
* module/srfi/srfi-43.scm (vector-concatenate): Fix the 'who' of an
  error message.

module/srfi/srfi-43.scm

index 88a3f3f..c1612aa 100644 (file)
@@ -304,7 +304,7 @@ from the subsequent locations in VEC ..."
 
 Append each vector in LIST-OF-VECTORS.  Equivalent to:
   (apply vector-append LIST-OF-VECTORS)"
-  (assert-vectors vs 'vector-append)
+  (assert-vectors vs 'vector-concatenate)
   (%vector-concatenate vs))
 
 (define (vector-empty? vec)