~ chicken-core (master) a64e5270b946f74ad45aa1c46b185d98e1ff011f


commit a64e5270b946f74ad45aa1c46b185d98e1ff011f
Author:     felix <felix@call-with-current-continuation.org>
AuthorDate: Sat Mar 21 15:58:22 2026 +0100
Commit:     felix <felix@call-with-current-continuation.org>
CommitDate: Sat Mar 21 15:58:22 2026 +0100

    missing paren

diff --git a/manual/Module (scheme base) b/manual/Module (scheme base)
index 3b7260ce..56fbe400 100644
--- a/manual/Module (scheme base)	
+++ b/manual/Module (scheme base)	
@@ -3454,7 +3454,7 @@ the elements of the string string between start and end.
 In both procedures, order is preserved.
 
  (string->vector "ABC")   ==>   #(#\A #\B #\C)
- (vector->string #(#\1 #\2 #\3)  ==> "123"
+ (vector->string #(#\1 #\2 #\3))  ==> "123"
 
 <procedure>(vector-copy vector [start [end]])</procedure>
 
Trap