Consolidate links to fix doc script error

This commit is contained in:
Justin Ethier 2018-02-02 14:26:15 +00:00
parent cecff21c24
commit 4db530d7e4
3 changed files with 4 additions and 10 deletions

View file

@ -11,7 +11,7 @@ characters, lines and objects from the current input port.
This library is designed to provide lightweight laziness. This library is designed to provide lightweight laziness.
See the [SRFI document][1] for more information. See the [SRFI document][http://srfi.schemers.org/srfi-121/srfi-121.html] for more information.
## Definitions ## Definitions
@ -452,7 +452,4 @@ Equivalent to ``(not (generator-any (lambda (x) (not (pred x))) gen))``.
(generator-unfold gen unfold arg ...) (generator-unfold gen unfold arg ...)
Equivalent to ``(unfold eof-object? (lambda (x) x) (lambda (x) (gen)) arg Equivalent to ``(unfold eof-object? (lambda (x) x) (lambda (x) (gen)) arg
...)``, where ``unfold`` is the [SRFI 1][2] procedure of the same name. ...)``, where ``unfold`` is the [SRFI 1][http://srfi.schemers.org/srfi-1/srfi-1.html] procedure of the same name.
[1]: http://srfi.schemers.org/srfi-121/srfi-121.html
[2]: http://srfi.schemers.org/srfi-1/srfi-1.html

View file

@ -4,7 +4,7 @@ Specifies a method of interpreting a Scheme string which contains a number of
escape sequences, into which other data is interpolated according to the escape sequences, into which other data is interpolated according to the
semantics of each sequence. semantics of each sequence.
See the [SRFI document][1] for more information. See the [SRFI document][http://srfi.schemers.org/srfi-28/srfi-28.html] for more information.
## Limitations ## Limitations
@ -44,4 +44,3 @@ Example: The call ``(format "This is the ~ast example: ~s~%" 1 '(foo bar 17))``
would produce the string ``"This is the 1st example: (foo bar 17) would produce the string ``"This is the 1st example: (foo bar 17)
"`` (note the newline). "`` (note the newline).
[1]: http://srfi.schemers.org/srfi-28/srfi-28.html

View file

@ -2,7 +2,7 @@
Various operations designed to work on integers as strings of bits efficiently. Various operations designed to work on integers as strings of bits efficiently.
See the [SRFI document][1] for more information. See the [SRFI document][http://srfi.schemers.org/srfi-60/srfi-60.html] for more information.
## Bitwise operations ## Bitwise operations
[`logand`](#logand) [`logand`](#logand)
@ -243,5 +243,3 @@ any ``x``, ``(equal x (integer->list (list->integer x))) => #t``.
(booleans->integer b1 ...) (booleans->integer b1 ...)
Equivalent to ``(list->integer (list b1 ...))``. Equivalent to ``(list->integer (list b1 ...))``.
[1]: http://srfi.schemers.org/srfi-60/srfi-60.html