(minor) clean up typos.

This commit is contained in:
Ryan Dick 2023-10-03 15:00:03 -04:00
parent 519b892f0c
commit 7d0ac2c36d
2 changed files with 3 additions and 2 deletions

View File

@ -59,7 +59,7 @@ class LibcUtil:
Note that this class will raise on __init__() if 'libc.so.6' can't be found. Take care to handle environments where
this shared library is not available.
TODO: Improve cross-OS copatibility of this class.
TODO: Improve cross-OS compatibility of this class.
"""
def __init__(self):

View File

@ -20,4 +20,5 @@ def test_struct_mallinfo2_to_str():
"""Smoke test of Struct_mallinfo2.__str__()."""
info = Struct_mallinfo2()
info_str = str(info)
print(info_str)
assert len(info_str) > 0