From: Oleg Broytman Date: Tue, 24 Oct 2017 23:39:20 +0000 (+0300) Subject: Fix misspelling in a comment X-Git-Tag: 0.2.3~40 X-Git-Url: https://git.phdru.name/?p=sqlconvert.git;a=commitdiff_plain;h=72abf4a136b1a2d164259a4ac300e6a5a4762432 Fix misspelling in a comment [skip ci] --- diff --git a/sqlconvert/process_mysql.py b/sqlconvert/process_mysql.py index 3456531..1834855 100644 --- a/sqlconvert/process_mysql.py +++ b/sqlconvert/process_mysql.py @@ -131,7 +131,7 @@ def split_ext_insert(statement): if i == len(values_tokens) - 1: # Last but one statement # Insert newlines only between split statements but not after new_lines = [] - # The statemnt sets `parent` attribute of the every token to self + # The statement sets `parent` attribute of the every token to self # but we don't care. statement = Statement(insert_tokens + [values] + end_tokens + new_lines)