diff --git a/bin/pt-online-schema-change b/bin/pt-online-schema-change index ec084b0f..097be7a5 100755 --- a/bin/pt-online-schema-change +++ b/bin/pt-online-schema-change @@ -11668,7 +11668,7 @@ sub check_orig_table { Cxn => $cxn, tbl => $orig_tbl, chunk_size => $o->get('chunk-size'), - chunk_indx => $o->get('chunk-index'), # typos:ignore-line + chunk_index => $o->get('chunk-index'), OptionParser => $o, TableParser => $tp, ); diff --git a/lib/SimpleTCPDumpParser.pm b/lib/SimpleTCPDumpParser.pm index 15255981..d34642f7 100644 --- a/lib/SimpleTCPDumpParser.pm +++ b/lib/SimpleTCPDumpParser.pm @@ -79,8 +79,8 @@ sub new { # # TCP requests and responses form "sessions", which can be in one of these # statuses: -# [Q]uerying - The remote host is sending the query to the server. # typos:ignore-line -# [R]esponding - The server is replying back to the remote host. +# Querying - The remote host is sending the query to the server. +# Responding - The server is replying back to the remote host. sub parse_event { my ( $self, %args ) = @_; my @required_args = qw(next_event tell);