From: Mark Wooding Date: Tue, 10 Sep 2019 19:42:49 +0000 (+0100) Subject: format.py: Fix some commentary typos. X-Git-Tag: 1.2.0~6 X-Git-Url: https://git.distorted.org.uk/~mdw/chopwood/commitdiff_plain/b91d3f0725ba4cda985ba91fb2fd41b7e3a3d54d?hp=13409f0092c75159b1ca87af1b940ade76f47cbd format.py: Fix some commentary typos. --- diff --git a/format.py b/format.py index af76c59..2b90cb9 100644 --- a/format.py +++ b/format.py @@ -296,7 +296,7 @@ class NextArg (BaseArg): else: return None NEXTARG = NextArg() -## Because a `NextArg' collectors are used so commonly, and they're all the +## Because `NextArg' collectors are used so commonly, and they're all the ## same, we make a distinguished one and try to use that instead. Nothing ## goes badly wrong if you don't use this, but you'll use more memory than ## strictly necessary. @@ -528,7 +528,7 @@ VARNEXT = VariableParameter(NEXTARG) ## whether the `@' and `:' modifiers were set in the control string. ## GETARG is the collector for the operation's argument(s). The PARAMS ## are a list of parameter collectors. Finally, CHAR is the directive -## character (so directives with siilar behaviour can use the same +## character (so directives with similar behaviour can use the same ## class). class FormatLiteral (object):