summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Hartwig <mandyke@gmail.com>2013-02-14 11:23:51 +0800
committerAndy Wingo <wingo@pobox.com>2013-02-14 10:45:27 +0100
commit5ad85ba15f901163190b365ddd744db22bbbfc42 (patch)
tree0ae4c7eb0448ac4955d1629e009c9467ca75c8cc
parent10a467f39887b722cb4cffa1a22c94a7b1e37bbc (diff)
update old references in FFI doc
* doc/ref/api-foreign.texi (Foreign Types): Replace references to the old foreign->bytevector and bytevector->foreign with the new procedure names using pointer.
-rw-r--r--doc/ref/api-foreign.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ref/api-foreign.texi b/doc/ref/api-foreign.texi
index 2473870d3..e59566849 100644
--- a/doc/ref/api-foreign.texi
+++ b/doc/ref/api-foreign.texi
@@ -803,8 +803,8 @@ int64_t a; uint8_t b; @}}:
@end example
As yet, Guile only has convenience routines to support
-conventionally-packed structs. But given the @code{bytevector->foreign}
-and @code{foreign->bytevector} routines, one can create and parse
+conventionally-packed structs. But given the @code{bytevector->pointer}
+and @code{pointer->bytevector} routines, one can create and parse
tightly packed structs and unions by hand. See the code for
@code{(system foreign)} for details.