From 5be3a20f9bbabab803de4d576fdf31dfeb3fd18b Mon Sep 17 00:00:00 2001 From: interp Date: Tue, 12 Feb 2002 11:37:28 +0000 Subject: [PATCH] Really minor format changes. Unimportant. --- doc/stringhax.scm.doc | 4 ++-- doc/uri.scm.doc | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/doc/stringhax.scm.doc b/doc/stringhax.scm.doc index bc51d17..9f1da7b 100644 --- a/doc/stringhax.scm.doc +++ b/doc/stringhax.scm.doc @@ -45,7 +45,7 @@ procedure string-reduce default construct string --> string Does a "fold-right" on string. The resulting string is -(CONSTRUCT ... (CONSTRUCT STRING[1] (CONSTRUCT STRING[0] DEFAULT)) ...) +(CONSTRUCT ... (CONSTRUCT STRING[n-1] (CONSTRUCT STRING[n] DEFAULT)) ...) Example: (string-reduce "" (lambda (char str) @@ -60,7 +60,7 @@ string-prefix? prefix string --> boolean string-suffix? suffix string --> boolean Return #t if PREFIX/SUFFIX is a real prefix/suffix of STRING, -otherwise return #f. Real prefix/suffix mean that STRING may not be a +otherwise return #f. Real prefix/suffix means that STRING may not be a prefix/suffix of PREFIX/SUFFIX. diff --git a/doc/uri.scm.doc b/doc/uri.scm.doc index ff44a8d..41725a8 100644 --- a/doc/uri.scm.doc +++ b/doc/uri.scm.doc @@ -29,7 +29,9 @@ parse-uri uri-string --> (scheme, path, search, frag-id) Multiple-value return: scheme, path, search, frag-id, in this order. scheme, search and frag-id are either #f or a string. path is a nonempty list of strings. An empty path is a list containing the empty -string. parse-uri tries to be tolerant of the various ways people build broken URIs out there on the Net (so it is not absolutely conform with RFC 1630). +string. parse-uri tries to be tolerant of the various ways people +build broken URIs out there on the Net (so it is not absolutely +conform with RFC 1630). procedure