Fix simple typo: intput -> input (#1146)

Fixes #1147
This commit is contained in:
Tim Gates 2019-11-08 07:57:39 +11:00 committed by Jelle Zijlstra
parent 9b484d1bcc
commit de6f4b1f6b

View File

@ -389,7 +389,7 @@ def untokenize(iterable: Iterable[TokenInfo]) -> Text:
Round-trip invariant for full input: Round-trip invariant for full input:
Untokenized source will match input source exactly Untokenized source will match input source exactly
Round-trip invariant for limited intput: Round-trip invariant for limited input:
# Output text will tokenize the back to the input # Output text will tokenize the back to the input
t1 = [tok[:2] for tok in generate_tokens(f.readline)] t1 = [tok[:2] for tok in generate_tokens(f.readline)]
newcode = untokenize(t1) newcode = untokenize(t1)