summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2017-07-18 22:45:21 -0700
committerKaz Kylheku <kaz@kylheku.com>2017-07-18 22:45:21 -0700
commitd32d2c328a8f65c7548871cd0617afaebf3f6f68 (patch)
tree8f8b195d77abbeb33252d38f73e4f42df87643e0
parentc091de3f034ba6667be82296268c28243f715ed7 (diff)
downloadtxr-d32d2c328a8f65c7548871cd0617afaebf3f6f68.tar.gz
txr-d32d2c328a8f65c7548871cd0617afaebf3f6f68.tar.bz2
txr-d32d2c328a8f65c7548871cd0617afaebf3f6f68.zip
doc: ffi out semantics wrongly refers to in semantics.
* txr.1: of course, the out operation of a type recursively invokes the out operation on embedded pointers, not the in operation.
-rw-r--r--txr.12
1 files changed, 1 insertions, 1 deletions
diff --git a/txr.1 b/txr.1
index e613d217..673014bf 100644
--- a/txr.1
+++ b/txr.1
@@ -54488,7 +54488,7 @@ is no use in reconstructing a new version of the structure; the caller will not
receive the change. However, if the structure contains pointers to data that
was updated, by the callback, those changes must materialize. This is achieved
by triggering the by-value nuance of the structure type's out operation, which
-will recursively invoke the in operation of embedded pointers, which will
+will recursively invoke the out operation of embedded pointers, which will
in turn invoke the by-pointer nuance.
.SS* The FFI Type System