Two bugs fixed in documentation.

This commit is contained in:
Abdulaziz Ghuloum 2007-11-26 21:12:07 -05:00
parent 4e2a44c525
commit 3892bfd7b5
2 changed files with 6 additions and 6 deletions

Binary file not shown.

View File

@ -142,7 +142,7 @@ Ikarus Scheme User's Guide
% \rnrs{6} Crash Course\\ % \rnrs{6} Crash Course\\
% Ikarus % Ikarus
(Preliminary Document) (Preliminary Document)
\hfill Version~0.0.1+ \hfill Version~0.0.2-rc1+
} }
\vfill \vfill
{ {
@ -1050,8 +1050,8 @@ different Scheme implementations, we recommend adding the
\texttt{\#!r6rs} token to the top of every script and library that \texttt{\#!r6rs} token to the top of every script and library that
you write. This allows Ikarus to alert you when using non-portable you write. This allows Ikarus to alert you when using non-portable
features. If you're writing code that's intended to be features. If you're writing code that's intended to be
Ikarus-specific, we adding the \texttt{\#!ikarus} token in order to Ikarus-specific, we recommend adding the \texttt{\#!ikarus} token in
get an immediate error when your code is run under other order to get an immediate error when your code is run under other
implementations. implementations.
\defun{port-mode}{procedure} \defun{port-mode}{procedure}
@ -1065,11 +1065,11 @@ extensions. When the \texttt{\#!r6rs} token is read from a port,
its mode changes to \texttt{ikarus-mode}. its mode changes to \texttt{ikarus-mode}.
\begin{verbatim} \begin{verbatim}
$ (port-mode (current-input-port)) > (port-mode (current-input-port))
ikarus-mode ikarus-mode
$ #!r6rs (port-mode (current-input-port)) > #!r6rs (port-mode (current-input-port))
r6rs-mode r6rs-mode
$ #!ikarus (port-mode (current-input-port)) > #!ikarus (port-mode (current-input-port))
ikarus-mode ikarus-mode
\end{verbatim} \end{verbatim}