PMM-11406 Another typo.

This commit is contained in:
Jiří Čtvrtka
2025-10-02 13:44:30 +02:00
parent d016effd18
commit 7a26991fb3
2 changed files with 3 additions and 3 deletions

View File

@@ -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,
);

View File

@@ -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);