diff options
author | Andrew Martin <andrew.thaddeus@gmail.com> | 2019-07-19 08:30:45 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-10-08 13:24:52 -0400 |
commit | 0c7a5bcd9c01dd4b8ced5096c8ba2705db3409af (patch) | |
tree | 388009ee7e1f5374615ecf68c07817edbd78df69 | |
parent | 0d41325917f703cc2ee8ee565c2319f02454447d (diff) | |
download | haskell-0c7a5bcd9c01dd4b8ced5096c8ba2705db3409af.tar.gz |
[skip ci] can not -> may not
-rw-r--r-- | docs/users_guide/ffi-chap.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/users_guide/ffi-chap.rst b/docs/users_guide/ffi-chap.rst index e590eb4f59..3d1dc9c680 100644 --- a/docs/users_guide/ffi-chap.rst +++ b/docs/users_guide/ffi-chap.rst @@ -177,7 +177,7 @@ Although GHC allows the user to pass all unlifted boxed types to foreign functions, some of them are not amenable to useful work. Although ``Array#`` is unlifted, the elements in its payload are lifted, and a foreign C function cannot safely force thunks. Consequently, -a foreign C function cannot dereference any of the addresses that comprise +a foreign C function may not dereference any of the addresses that comprise the payload of the ``Array#``. .. _ffi-newtype-io: |