summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2016-12-06 13:39:56 -0600
committerChristopher Allan Webber <cwebber@dustycloud.org>2016-12-06 13:40:13 -0600
commitf94ea26a972daa2ee01d4612be0b48a2f4300b1c (patch)
treee74b563e2fa13e70a44deb536d55923e45ebaaf2 /doc
parent7184c176b40db274a92ae14eed1f7d71a0c26e8b (diff)
downloadguile-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')
-rw-r--r--doc/ref/api-io.texi2
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