PEP 611: Correct typo (#1254)

valuses => values
This commit is contained in:
Frank Dana 2019-12-14 19:20:35 -05:00 committed by Chris Angelico
parent 1542941b34
commit 3a80f3eacc
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ However, this limit is quite easily exceeded in practice by code generators and
the author is aware of existing Python code that already exceeds 2\ :sup:`16` lines of code.
A limit of one million fits into 20 bits which, although not as convenient for machine representation,
is still reasonably compact. Three signed valuses in the range -1000_000 to +1000_000 can fit into a 64 bit word.
is still reasonably compact. Three signed values in the range -1000_000 to +1000_000 can fit into a 64 bit word.
A limit of one million is small enough for efficiency advantages (only 20 bits),
but large enough not to impact users (no one has ever written a module of one million lines).