summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2002-07-08 18:55:21 +0000
committerMarius Vollmer <mvo@zagadka.de>2002-07-08 18:55:21 +0000
commit658b35a01e095ff9ed026847cddb1ae61016bea2 (patch)
tree4d787c84cb5f75c5f4876899425febc7c3d469ed /doc
parentca679709cc93f1052cebee0d8218df27ebb9948c (diff)
downloadguile-658b35a01e095ff9ed026847cddb1ae61016bea2.tar.gz
Renamed :rename to :renamer.
Diffstat (limited to 'doc')
-rw-r--r--doc/ref/scheme-modules.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ref/scheme-modules.texi b/doc/ref/scheme-modules.texi
index b2895f636..75b739647 100644
--- a/doc/ref/scheme-modules.texi
+++ b/doc/ref/scheme-modules.texi
@@ -178,7 +178,7 @@ them to suit the current module's needs. For example:
@smalllisp
(use-modules ((ice-9 popen)
:select ((open-pipe . pipe-open) close-pipe)
- :rename (symbol-prefix-proc 'unixy:)))
+ :renamer (symbol-prefix-proc 'unixy:)))
@end smalllisp
Here, the interface specification is more complex than before, and the
@@ -215,7 +215,7 @@ whose public interface is found and used.
@var{spec} can also be of the form:
@smalllisp
- (MODULE-NAME [:select SELECTION] [:rename RENAMER])
+ (MODULE-NAME [:select SELECTION] [:renamer RENAMER])
@end smalllisp
in which case a custom interface is newly created and used.
@@ -226,7 +226,7 @@ a pair of symbols @code{(ORIG . SEEN)}, where @var{orig} is the name in
the used module and @var{seen} is the name in the using module. Note
that @var{seen} is also passed through @var{renamer}.
-The @code{:select} and @code{:rename} clauses are optional. If both are
+The @code{:select} and @code{:renamer} clauses are optional. If both are
omitted, the returned interface has no bindings. If the @code{:select}
clause is omitted, @var{renamer} operates on the used module's public
interface.