1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 03:30:27 +02:00

R6RS library documentation fix

* doc/ref/api-modules.texi (R6RS Libraries): Move 'export' before
  'import' in the example library form, as required by R6RS.
This commit is contained in:
Taylan Ulrich B 2014-06-05 19:27:53 +02:00 committed by Mark H Weaver
parent d86a063158
commit 43191a31a5

View file

@ -584,8 +584,8 @@ expression:
@lisp
(library (mylib (1 2))
(import (otherlib (3)))
(export mybinding))
(export mybinding)
(import (otherlib (3))))
@end lisp
is equivalent to the module definition: