Fix minor typo in function comment (#19804)

This commit is contained in:
Adam J. Stewart 2020-11-09 19:25:45 -06:00 committed by GitHub
parent 65cef0a3ad
commit 228a4d353c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -321,7 +321,7 @@ def dump_annotated(data, stream=None, *args, **kwargs):
stream = StringIO()
getvalue = stream.getvalue
# write out annotations and linees, accounting for color
# write out annotations and lines, accounting for color
width = max(clen(a) for a in _annotations)
formats = ['%%-%ds %%s\n' % (width + cextra(a)) for a in _annotations]