diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2016-12-06 13:39:56 -0600 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2016-12-06 13:40:13 -0600 |
commit | f94ea26a972daa2ee01d4612be0b48a2f4300b1c (patch) | |
tree | e74b563e2fa13e70a44deb536d55923e45ebaaf2 /doc/ref/api-io.texi | |
parent | 7184c176b40db274a92ae14eed1f7d71a0c26e8b (diff) | |
download | guile-f94ea26a972daa2ee01d4612be0b48a2f4300b1c.tar.gz |
Fix small typo in suspendable-ports documentation.
* doc/ref/api-io.texi (Non-Blocking I/O): Fix example to call use-modules
rather than use-module.
Diffstat (limited to 'doc/ref/api-io.texi')
-rw-r--r-- | doc/ref/api-io.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ref/api-io.texi b/doc/ref/api-io.texi index 9facb38e0..9bd78d229 100644 --- a/doc/ref/api-io.texi +++ b/doc/ref/api-io.texi @@ -1768,7 +1768,7 @@ parallel implementation of port operations. To use this implementation, do the following: @example -(use-module (ice-9 suspendable-ports)) +(use-modules (ice-9 suspendable-ports)) (install-suspendable-ports!) @end example |