We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90a4e42 commit fcea499Copy full SHA for fcea499
socket/basic/README.md
@@ -1,6 +1,6 @@
1
# Version #1
2
3
-Basic version which sends and receives short message.
+It is basic version which sends and receives one short message.
4
5
# Version #2
6
@@ -30,11 +30,11 @@ It first sends message's length as `int` converted to `4-bytes`.
30
31
length_bytes = struct.pack('!i', length_int)
32
33
-# Version #3
+# Version #4
34
35
-Using threads to handle many clients at the same time
+It uses threads to handle many clients at the same time.
36
37
-Python: [threading](https://docs.python.org/3/library/threading.html)
+Python doc: [threading](https://docs.python.org/3/library/threading.html)
38
39
-Other examples: [Thread][../thread]
+Other examples: [Thread](../thread)
40
0 commit comments