diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-05 09:12:14 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-05 09:12:14 (GMT) |
commit | 73a5a12dcf4258c6973383b31dc6cbb8d36d75f1 (patch) | |
tree | d81075a7e0661d9dbab5ccc91810548126e7d115 /Doc | |
parent | 1dfb5c1cf3aac0a42b157631a0e8d274e5be8c6f (diff) | |
download | cpython-73a5a12dcf4258c6973383b31dc6cbb8d36d75f1.zip cpython-73a5a12dcf4258c6973383b31dc6cbb8d36d75f1.tar.gz cpython-73a5a12dcf4258c6973383b31dc6cbb8d36d75f1.tar.bz2 |
Fix typo.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/exceptions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/exceptions.rst b/Doc/library/exceptions.rst index 89f933c..5f2db54 100644 --- a/Doc/library/exceptions.rst +++ b/Doc/library/exceptions.rst @@ -516,7 +516,7 @@ depending on the system error code. .. exception:: InterruptedError Raised when a system call is interrupted by an incoming signal. - Corresponds to :c:data:`errno` ``EEINTR``. + Corresponds to :c:data:`errno` ``EINTR``. .. exception:: IsADirectoryError |