diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-07-18 22:45:21 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-07-18 22:45:21 -0700 |
commit | d32d2c328a8f65c7548871cd0617afaebf3f6f68 (patch) | |
tree | 8f8b195d77abbeb33252d38f73e4f42df87643e0 | |
parent | c091de3f034ba6667be82296268c28243f715ed7 (diff) | |
download | txr-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.1 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |