From 3a80f3eacc6f384d3add961f4ed373d0b5455871 Mon Sep 17 00:00:00 2001 From: Frank Dana Date: Sat, 14 Dec 2019 19:20:35 -0500 Subject: [PATCH] PEP 611: Correct typo (#1254) valuses => values --- pep-0611.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-0611.rst b/pep-0611.rst index f7e489865..7f06e297b 100644 --- a/pep-0611.rst +++ b/pep-0611.rst @@ -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).