diff options
Diffstat (limited to 'Lib/encodings')
| -rw-r--r-- | Lib/encodings/utf_16.py | 2 | ||||
| -rw-r--r-- | Lib/encodings/utf_32.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/encodings/utf_16.py b/Lib/encodings/utf_16.py index 809bc9a..c612482 100644 --- a/Lib/encodings/utf_16.py +++ b/Lib/encodings/utf_16.py @@ -73,7 +73,7 @@ class IncrementalDecoder(codecs.BufferedIncrementalDecoder): self.decoder = None def getstate(self): - # additonal state info from the base class must be None here, + # additional state info from the base class must be None here, # as it isn't passed along to the caller state = codecs.BufferedIncrementalDecoder.getstate(self)[0] # additional state info we pass to the caller: diff --git a/Lib/encodings/utf_32.py b/Lib/encodings/utf_32.py index c052928..cdf84d1 100644 --- a/Lib/encodings/utf_32.py +++ b/Lib/encodings/utf_32.py @@ -68,7 +68,7 @@ class IncrementalDecoder(codecs.BufferedIncrementalDecoder): self.decoder = None def getstate(self): - # additonal state info from the base class must be None here, + # additional state info from the base class must be None here, # as it isn't passed along to the caller state = codecs.BufferedIncrementalDecoder.getstate(self)[0] # additional state info we pass to the caller: |
