diff options
author | karl ding <karlding@users.noreply.github.com> | 2019-05-28 18:35:26 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-05-28 18:35:26 (GMT) |
commit | 1b05aa219041eb1c9dbcb4ec6c1fa5b20f060bf5 (patch) | |
tree | 75b5de551faab615cbc56e6569347c408ccf56a0 | |
parent | 382034b255935fbf0b5516708ac16a020d27af39 (diff) | |
download | cpython-1b05aa219041eb1c9dbcb4ec6c1fa5b20f060bf5.zip cpython-1b05aa219041eb1c9dbcb4ec6c1fa5b20f060bf5.tar.gz cpython-1b05aa219041eb1c9dbcb4ec6c1fa5b20f060bf5.tar.bz2 |
Fix typo in docs for socket.CAN_RAW_FD_FRAMES (GH-13635)
There is an extra "one" in the text description for the constant
socket.CAN_RAW_FD_FRAMES
-rw-r--r-- | Doc/library/socket.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst index e23a4f5..5be2b76 100644 --- a/Doc/library/socket.rst +++ b/Doc/library/socket.rst @@ -380,7 +380,7 @@ Constants Enables CAN FD support in a CAN_RAW socket. This is disabled by default. This allows your application to send both CAN and CAN FD frames; however, - you one must accept both CAN and CAN FD frames when reading from the socket. + you must accept both CAN and CAN FD frames when reading from the socket. This constant is documented in the Linux documentation. |