Fix typos in docs, comments and test assert messages (#14872)

This commit is contained in:
Min ho Kim 2019-07-22 06:12:33 +10:00 committed by Terry Jan Reedy
parent 8e3a7380ec
commit 96e12d5f4f
21 changed files with 24 additions and 24 deletions

View file

@ -2119,7 +2119,7 @@ save_long(PicklerObject *self, PyObject *obj)
/* How many bytes do we need? There are nbits >> 3 full
* bytes of data, and nbits & 7 leftover bits. If there
* are any leftover bits, then we clearly need another
* byte. Wnat's not so obvious is that we *probably*
* byte. What's not so obvious is that we *probably*
* need another byte even if there aren't any leftovers:
* the most-significant bit of the most-significant byte
* acts like a sign bit, and it's usually got a sense