Presentation nits

This commit is contained in:
Antoine Pitrou 2013-04-26 23:13:23 +02:00
parent 1258ea5228
commit 82071751b4
1 changed files with 3 additions and 3 deletions

View File

@ -59,11 +59,11 @@ of a pickle is thus the following::
+------+------+
| 0x80 | 0x04 | protocol header (2 bytes)
+------+------+-----------+
| AA BB CC DD EE FF GG HH | frame size (8 bytes, little-endian)
| MM MM MM MM MM MM MM MM | frame size (8 bytes, little-endian)
+------+------------------+
| .... | first frame contents (N bytes)
| .... | first frame contents (M bytes)
+------+------+-----------+
| AA BB CC DD EE FF GG HH | frame size (8 bytes, little-endian)
| NN NN NN NN NN NN NN NN | frame size (8 bytes, little-endian)
+------+------------------+
| .... | second frame contents (N bytes)
+------+