diff options
author | Martin Müller <mail@mueller-martin.net> | 2016-06-25 16:50:26 +0200 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-06-26 12:38:20 +0100 |
commit | 047ac2044dc48fa34aa2092b88867082987bfe94 (patch) | |
tree | b20803e574a6ff0d4c24a323b6b7e26fd7245777 /docs | |
parent | 7ddd85f933f18deff49bc6af520d4dc8d7be6282 (diff) | |
download | micropython-047ac2044dc48fa34aa2092b88867082987bfe94.tar.gz micropython-047ac2044dc48fa34aa2092b88867082987bfe94.zip |
docs/library: Fix typo in docs for usocket.listen().
Diffstat (limited to 'docs')
-rw-r--r-- | docs/library/usocket.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/library/usocket.rst b/docs/library/usocket.rst index 9d1d569df4..9b279e5ba7 100644 --- a/docs/library/usocket.rst +++ b/docs/library/usocket.rst @@ -101,7 +101,7 @@ Methods Enable a server to accept connections. If backlog is specified, it must be at least 0 (if it's lower, it will be set to 0); and specifies the number of unaccepted connections - tha the system will allow before refusing new connections. If not specified, a default + that the system will allow before refusing new connections. If not specified, a default reasonable value is chosen. .. method:: socket.accept() |