From 4db530d7e4c99ecc1f8503cc29fc4a9ba8c2645d Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Fri, 2 Feb 2018 14:26:15 +0000 Subject: [PATCH] Consolidate links to fix doc script error --- docs/api/srfi/121.md | 7 ++----- docs/api/srfi/28.md | 3 +-- docs/api/srfi/60.md | 4 +--- 3 files changed, 4 insertions(+), 10 deletions(-) diff --git a/docs/api/srfi/121.md b/docs/api/srfi/121.md index 9980693d..07950d57 100644 --- a/docs/api/srfi/121.md +++ b/docs/api/srfi/121.md @@ -11,7 +11,7 @@ characters, lines and objects from the current input port. 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 @@ -452,7 +452,4 @@ Equivalent to ``(not (generator-any (lambda (x) (not (pred x))) gen))``. (generator-unfold gen unfold 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. - -[1]: http://srfi.schemers.org/srfi-121/srfi-121.html -[2]: http://srfi.schemers.org/srfi-1/srfi-1.html +...)``, where ``unfold`` is the [SRFI 1][http://srfi.schemers.org/srfi-1/srfi-1.html] procedure of the same name. diff --git a/docs/api/srfi/28.md b/docs/api/srfi/28.md index 7ba65952..54200e59 100644 --- a/docs/api/srfi/28.md +++ b/docs/api/srfi/28.md @@ -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 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 @@ -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) "`` (note the newline). -[1]: http://srfi.schemers.org/srfi-28/srfi-28.html diff --git a/docs/api/srfi/60.md b/docs/api/srfi/60.md index 24b44ae6..9a5a000f 100644 --- a/docs/api/srfi/60.md +++ b/docs/api/srfi/60.md @@ -2,7 +2,7 @@ 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 [`logand`](#logand) @@ -243,5 +243,3 @@ any ``x``, ``(equal x (integer->list (list->integer x))) => #t``. (booleans->integer b1 ...) Equivalent to ``(list->integer (list b1 ...))``. - -[1]: http://srfi.schemers.org/srfi-60/srfi-60.html