Commit 1b97b2ea authored by Bryton Lacquement's avatar Bryton Lacquement 🚪

Typo fix

parent 767964c5
......@@ -13,7 +13,7 @@ class BaseStaticTraceFix(BaseFix):
def __init__(self, *args, **kwargs):
super(BaseStaticTraceFix, self).__init__(*args, **kwargs)
# Note: id is used to differentiate the divisions of the same line.
# Note: id is used to differentiate objects on the same line.
self.insert_trace = create_table(self.basename + "_trace", "filename", "lineno", "id", *self.traced_information)
def start_tree(self, *args, **kwargs):
......@@ -70,7 +70,7 @@ class BaseSupportFix(BaseFix):
def __init__(self, *args, **kwargs):
super(BaseSupportFix, self).__init__(*args, **kwargs)
# Note: id is used to differentiate the divisions of the same line.
# Note: id is used to differentiate objects on the same line.
self.insert_support = create_table(self.basename + "_support", "filename", "lineno", "id", "status")
def analyze_data(self, filename, lineno, id_):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment