diff options
author | Niklas Hambüchen <mail@nh2.me> | 2017-11-15 11:43:04 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-11-15 14:18:30 -0500 |
commit | ec080ea1f160263282500b30444cb2db857f2f93 (patch) | |
tree | 996391fd77a409a35417b032fd76449897b61232 /docs/users_guide/ffi-chap.rst | |
parent | e14945ce046a000f1542818cd5cb6007cf2e2422 (diff) | |
download | haskell-ec080ea1f160263282500b30444cb2db857f2f93.tar.gz |
users_guide: Fix "CancelSynchronousIo" casing
Reviewers: bgamari, angerman
Reviewed By: angerman
Subscribers: angerman, rwbarton, thomie
Differential Revision: https://phabricator.haskell.org/D4200
Diffstat (limited to 'docs/users_guide/ffi-chap.rst')
-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 9beb4be870..e844fac8fd 100644 --- a/docs/users_guide/ffi-chap.rst +++ b/docs/users_guide/ffi-chap.rst @@ -160,7 +160,7 @@ Unix systems Windows systems [Vista and later only] The RTS calls the Win32 function - ``CancelSynchronousIO``, which will cause a blocking I/O operation + ``CancelSynchronousIo``, which will cause a blocking I/O operation to return with the error ``ERROR_OPERATION_ABORTED``. If the system call is successfully interrupted, it will return to |