Skip to content

Commit 5443996

Browse files
committed
fix comments
1 parent 5a7784c commit 5443996

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/cli/diff_opcode_counts.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
"""
33
Compare opcode counts between two folders of JSON fixtures.
44
5-
This script crawls two folders for JSON files, parses them using the Fixtures model,
6-
and compares the opcode_count field from the info section between fixtures with the same name.
5+
This script crawls two folders for JSON files, parses them using the Fixtures
6+
model, and compares the opcode_count field from the info section between
7+
fixtures with the same name.
78
"""
89

910
import sys
@@ -77,7 +78,7 @@ def load_all_opcode_counts(
7778
)
7879
if fixtures:
7980
file_opcode_counts = extract_opcode_counts_from_fixtures(fixtures)
80-
# Use fixture name as key, if there are conflicts, the last one wins
81+
# Use fixture name as key, if there are conflicts, choose the last
8182
all_opcode_counts.update(file_opcode_counts)
8283

8384
return all_opcode_counts

0 commit comments

Comments
 (0)