[benchmark] Fix typo in compare_perf_tests.py

formating -> formatting
This commit is contained in:
Ikko Ashimine
2021-09-04 09:10:34 +09:00
committed by GitHub
parent cc8f0bb55a
commit c48f6e09bb

View File

@@ -48,7 +48,7 @@ class Sample(namedtuple("Sample", "i num_iters runtime")):
"""
def __repr__(self):
"""Shorter Sample formating for debugging purposes."""
"""Shorter Sample formatting for debugging purposes."""
return "s({0.i!r}, {0.num_iters!r}, {0.runtime!r})".format(self)