diff options
author | Taylan Ulrich B <taylanbayirli@gmail.com> | 2014-06-05 19:27:53 +0200 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2014-06-06 16:38:09 -0400 |
commit | 43191a31a5f15729acbde3fa58f750021977a9f9 (patch) | |
tree | caa4e90fe87442041bcdd2d92cea61d3d5564890 /doc/ref/api-modules.texi | |
parent | d86a0631585ba887cd8635001f3a2c8d000c6517 (diff) | |
download | guile-43191a31a5f15729acbde3fa58f750021977a9f9.tar.gz |
R6RS library documentation fix
* doc/ref/api-modules.texi (R6RS Libraries): Move 'export' before
'import' in the example library form, as required by R6RS.
Diffstat (limited to 'doc/ref/api-modules.texi')
-rw-r--r-- | doc/ref/api-modules.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ref/api-modules.texi b/doc/ref/api-modules.texi index 286a37d7e..0f54e01ab 100644 --- a/doc/ref/api-modules.texi +++ b/doc/ref/api-modules.texi @@ -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: |