Skip to content

Commit 4a45092

Browse files
committed
fix a few spelling mistakes
#56
1 parent 98274e6 commit 4a45092

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

man/mysqldump.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1275,7 +1275,7 @@ to point the slave to the correct master server host\&. Add any such parameters
12751275
.\" max-allowed-packet option: mysqldump
12761276
\fB\-\-max\-allowed\-packet=\fR\fB\fIlength\fR\fR
12771277
.sp
1278-
Sets the maximum packet length to send to or recieve from server\&.
1278+
Sets the maximum packet length to send to or receive from server\&.
12791279
.RE
12801280
.sp
12811281
.RS 4

mysql-test/mysql-test-run.pl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -837,7 +837,7 @@ ($$$)
837837
redo;
838838
}
839839

840-
# Limit number of parallell NDB tests
840+
# Limit number of parallel NDB tests
841841
if ($t->{ndb_test} and $num_ndb_tests >= $max_ndb){
842842
#mtr_report("Skipping, num ndb is already at max, $num_ndb_tests");
843843
next;
@@ -6411,10 +6411,10 @@ ($)
64116411
non-blocking-api Use the non-blocking client API
64126412
compress Use the compressed protocol between client and server
64136413
ssl Use ssl protocol between client and server
6414-
skip-ssl Dont start server with support for ssl connections
6414+
skip-ssl Don't start server with support for ssl connections
64156415
vs-config Visual Studio configuration used to create executables
64166416
(default: MTR_VS_CONFIG environment variable)
6417-
parallel=# How many parallell test should be run
6417+
parallel=# How many parallel test should be run
64186418
defaults-file=<config template> Use fixed config template for all
64196419
tests
64206420
defaults-extra-file=<config template> Extra config template to add to
@@ -6543,7 +6543,7 @@ ($)
65436543
up disks for heavily crashing server). Defaults to
65446544
$opt_max_save_datadir, set to 0 for no limit. Set
65456545
it's default with MTR_MAX_SAVE_DATADIR
6546-
max-test-fail Limit the number of test failurs before aborting
6546+
max-test-fail Limit the number of test failures before aborting
65476547
the current test run. Defaults to
65486548
$opt_max_test_fail, set to 0 for no limit. Set
65496549
it's default with MTR_MAX_TEST_FAIL
@@ -6590,7 +6590,7 @@ ($)
65906590
--mysqld (if any)
65916591
wait-all If --start or --start-dirty option is used, wait for all
65926592
servers to exit before finishing the process
6593-
fast Run as fast as possible, dont't wait for servers
6593+
fast Run as fast as possible, don't wait for servers
65946594
to shutdown etc.
65956595
force-restart Always restart servers between tests
65966596
parallel=N Run tests in N parallel threads (default 1)
@@ -6625,7 +6625,7 @@ ($)
66256625
actions. Disable facility with NUM=0.
66266626
gcov Collect coverage information after the test.
66276627
The result is a gcov file per source and header file.
6628-
gcov-src-dir=subdir Colllect coverage only within the given subdirectory.
6628+
gcov-src-dir=subdir Collect coverage only within the given subdirectory.
66296629
For example, if you're only developing the SQL layer,
66306630
it makes sense to use --gcov-src-dir=sql
66316631
gprof Collect profiling information using gprof.

sql/log.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3291,7 +3291,7 @@ bool MYSQL_BIN_LOG::open(const char *log_name,
32913291
it may be good to consider what actually happens when
32923292
open_purge_index_file succeeds but register or sync fails.
32933293
3294-
Perhaps we might need the code below in MYSQL_LOG_BIN::cleanup
3294+
Perhaps we might need the code below in MYSQL_BIN_LOG::cleanup
32953295
for "real life" purposes as well?
32963296
*/
32973297
DBUG_EXECUTE_IF("fault_injection_registering_index", {

sql/rpl_rli.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,7 @@ struct rpl_group_info
715715
/**
716716
Save pointer to Annotate_rows event and switch on the
717717
binlog_annotate_row_events for this sql thread.
718-
To be called when sql thread recieves an Annotate_rows event.
718+
To be called when sql thread receives an Annotate_rows event.
719719
*/
720720
inline void set_annotate_event(Annotate_rows_log_event *event)
721721
{

storage/maria/maria_chk.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1054,7 +1054,7 @@ static int maria_chk(HA_CHECK *param, char *filename)
10541054
error= 1;
10551055
goto end2;
10561056
}
1057-
/* We can't do parallell repair with BLOCK_RECORD yet */
1057+
/* We can't do parallel repair with BLOCK_RECORD yet */
10581058
if (param->testflag & T_REP_PARALLEL)
10591059
{
10601060
param->testflag&= ~T_REP_PARALLEL;

0 commit comments

Comments
 (0)