Skip to content

Commit 104742c

Browse files
committed
more doc string shrinking
1 parent abde0bd commit 104742c

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

dist/std.min.scm

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/std.scm

Lines changed: 6 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/std.xcb

-2 Bytes
Binary file not shown.

lib/byte-vectors.scm

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@
5656
(define (,make-vector k . fill)
5757
,(format "(~a k fill)
5858
59-
Allocate new ~a of length k, with optional initial values."
59+
Allocate new ~a of length k,
60+
with optional initial values."
6061
make-vector
6162
help)
6263
(let ((v (new ,type k)))
@@ -67,7 +68,8 @@
6768
(define (,vector? x)
6869
,(format "(~a x)
6970
70-
Returns #t of argument is ~a otherwise it return #f."
71+
Returns #t of argument is ~a,
72+
otherwise it return #f."
7173
vector?
7274
help)
7375
(and (object? x) (equal? (. x 'constructor) ,type)))
@@ -86,7 +88,8 @@
8688
(define (,vector-ref vector k)
8789
,(format "(~a vector k)
8890
89-
Returns value from vector at index k. If index is out of range it throw exception."
91+
Returns value from vector at index k.
92+
If index is out of range it throw exception."
9093
vector-ref
9194
help)
9295
(typecheck ,(symbol->string vector-ref) vector ,l-type)

0 commit comments

Comments
 (0)