Skip to content

Commit fcea499

Browse files
committed
other
1 parent 90a4e42 commit fcea499

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

socket/basic/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Version #1
22

3-
Basic version which sends and receives short message.
3+
It is basic version which sends and receives one short message.
44

55
# Version #2
66

@@ -30,11 +30,11 @@ It first sends message's length as `int` converted to `4-bytes`.
3030

3131
length_bytes = struct.pack('!i', length_int)
3232

33-
# Version #3
33+
# Version #4
3434

35-
Using threads to handle many clients at the same time
35+
It uses threads to handle many clients at the same time.
3636

37-
Python: [threading](https://docs.python.org/3/library/threading.html)
37+
Python doc: [threading](https://docs.python.org/3/library/threading.html)
3838

39-
Other examples: [Thread][../thread]
39+
Other examples: [Thread](../thread)
4040

0 commit comments

Comments
 (0)