diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2020-11-09 19:25:45 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-09 20:25:45 -0500 |
commit | 228a4d353c008e95b62c92080498a16410f53cff (patch) | |
tree | 603fc280a01f8774c618b8e4f9041144120d7c25 | |
parent | 65cef0a3add82697c8eeeee2f41ce2c89420eefc (diff) | |
download | spack-228a4d353c008e95b62c92080498a16410f53cff.tar.gz spack-228a4d353c008e95b62c92080498a16410f53cff.tar.bz2 spack-228a4d353c008e95b62c92080498a16410f53cff.tar.xz spack-228a4d353c008e95b62c92080498a16410f53cff.zip |
Fix minor typo in function comment (#19804)
-rw-r--r-- | lib/spack/spack/util/spack_yaml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/util/spack_yaml.py b/lib/spack/spack/util/spack_yaml.py index 565a9be4ea..40e66ee62c 100644 --- a/lib/spack/spack/util/spack_yaml.py +++ b/lib/spack/spack/util/spack_yaml.py @@ -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] |