Some cosmetic doc fixes.

This commit is contained in:
Martin Grabmüller 2001-09-26 17:24:54 +00:00
commit 40f316d0b7
3 changed files with 21 additions and 9 deletions

View file

@ -1,3 +1,15 @@
2001-09-26 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
* srfi-modules.texi (SRFI-13): Tyop fix.
(SRFI-13): Changed paragraph about bindings both in the code and
in SRFI-13.
* misc-modules.texi (Formatted Output): Tyop fix.
(Formatted Output): Document ~g properly.
Thanks to Alex Schroeder for pointing out the typos and sending
suggestions.
2001-09-25 Thien-Thi Nguyen <ttn@glug.org>
* scheme-procedures.texi (Syntax Rules): Add `cindex' directive.

View file

@ -124,7 +124,7 @@ Output a newline character, thus advancing to the next output line.
@item ~&
Start a new line, that is, output a newline character if not already
at the statr of a line.
at the start of a line.
@item ~_
Output a single space character.
@ -173,8 +173,8 @@ Output the corresponding @var{arg} in exponential notation, such as
@code{1.34E+0}.
@item ~g
%% FIXME::martin: There must be a difference. Does anybody know?
Like @code{~f}.
This works either like @code{~f} or like @code{~e}, whichever produces
less characters to be written.
@item ~$
Like @code{~f}, but only with two digits after the decimal point.

View file

@ -1124,11 +1124,11 @@ please refer to the relevant chapters in the Guile Reference Manual, for
example the documentation of strings and string procedures
(@pxref{Strings}).
All of the procedures defined in SRFI-13, which are not already included
in the Guile core library, are implemented in the module @code{(srfi
srfi-13)}. The procedures which are both in Guile and in SRFI-13, but
which are slightly extended, have been implemented in this module, and
the bindings overwrite those in the Guile core.
All of the procedures defined in SRFI-13, which are not already
included in the Guile core library, are implemented in the module
@code{(srfi srfi-13)}. The procedures which are both in Guile and in
SRFI-13 are slightly extended in this module. Their bindings
overwrite those in the Guile core.
The procedures which are defined in the section @emph{Low-level
procedures} of SRFI-13 for parsing optional string indices, substring
@ -1152,7 +1152,7 @@ soon as possible.
* SRFI-13 Case Mapping:: Mapping to lower-/upper-case.
* SRFI-13 Reverse/Append:: Reverse and append strings.
* SRFI-13 Fold/Unfold/Map:: Construct/deconstruct strings.
* SRFI-13 Replicate/Rotate:: Replacate and rotate portions of strings.
* SRFI-13 Replicate/Rotate:: Replicate and rotate portions of strings.
* SRFI-13 Miscellaneous:: Left-over string procedures.
* SRFI-13 Filtering/Deleting:: Filter and delete characters from strings.
@end menu