Skip to content

Commit 40c5b62

Browse files
qoboodgrooverdan
authored andcommitted
Fix remaining typos
1 parent bc87abc commit 40c5b62

File tree

135 files changed

+217
-217
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+217
-217
lines changed

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Tick one of the following boxes [x] to help us understand if the base branch for
4343
- [ ] *This is a bug fix, and the PR is based against the earliest maintained branch in which the bug can be reproduced.*
4444

4545
<!--
46-
All code merged into the MariaDB codebase must meet a quality standard and codying style.
46+
All code merged into the MariaDB codebase must meet a quality standard and coding style.
4747
Maintainers are happy to point out inconsistencies but in order to speed up the review and merge process we ask you to check the CODING standards.
4848
-->
4949
## PR quality check

.gitlab-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
# This Gitlab-CI pipeline offers basic validation that a commit did not
3-
# introduce easily detectable regressions. Builds run primairly on a new Fedora,
3+
# introduce easily detectable regressions. Builds run primarily on a new Fedora,
44
# which has all the latest upstream build dependencies and thus is the primary
55
# testing target, as eventually everything in Fedora becomes the next CentOS and
66
# Red Hat releases.
@@ -315,7 +315,7 @@ mysql-test-run:
315315
#
316316
# Additionally, for each sanitizer MTR job, we enable --force-restart so that
317317
# sanitizer errors can be traced to individual tests. The difference in test
318-
# suite runtime as a result of this flag is negligable (~30s for the entire test suite).
318+
# suite runtime as a result of this flag is negligible (~30s for the entire test suite).
319319
# (see https://dev.mysql.com/doc/dev/mysql-server/latest/PAGE_MYSQL_TEST_RUN_PL.html)
320320
mysql-test-run-asan:
321321
stage: test

BUILD-CMAKE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ is in <build-root>/sql/CMakeFiles/mysqld.dir/link.txt
242242
feature because tests do not rerun when reconfiguring (e.g when a new test was
243243
added).The downside of caching is that when a platform test was wrong and was
244244
later corrected, the cached result is still used. If you encounter this
245-
situation, which should be a rare occation, you need either to remove the
245+
situation, which should be a rare occasion, you need either to remove the
246246
offending entry from CMakeCache.txt (if test was for HAVE_FOO, remove lines
247247
containing HAVE_FOO from CMakeCache.txt) or just remove the cache file.
248248

BUILD/compile-pentium64-ubsan

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335 USA
1616

1717
# Compilation with UBSAN, The Undefined Behavior Sanitizer
18-
# We have to use -Wno-uninitialized and -Wno-unitialized we get a lot of false
18+
# We have to use -Wno-uninitialized and we get a lot of false
1919
# positive warnings for this when compiling with -fsanitize=undefined.
2020
# We also have to compile without Spider as linking with Spider library does
2121
# not work. (errno: 11, undefined symbol: _ZTI12ha_partition)

CODING_STANDARDS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ MDEV-12345 Fixing Rockwell Turbo Encabulator
2525
2626
The new principle involved is that instead of power being generated by
2727
the relative motion of conductors and fluxes, it’s produced by the
28-
modial interaction of magneto-reluctance and capacitive diractance.
28+
modial interaction of magneto-reluctance and capacitive directance.
2929
```
3030

3131
The only explicitly allowed exception to the 50-72 rules is that if the first line can be MDEV-###### title', even if the title would make the line longer than 50 characters.

Docs/myisam.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ The function parameter can be:
168168
HA_EXTRA_NORMAL=0 Optimize for space (def)
169169
HA_EXTRA_QUICK=1 Optimize for speed
170170
HA_EXTRA_RESET=2 Reset database to after open
171-
HA_EXTRA_CACHE=3Cash record in HA_rrnd()
171+
HA_EXTRA_CACHE=3Cache record in HA_rrnd()
172172
HA_EXTRA_NO_CACHE=4 End caching of records (def)
173173
HA_EXTRA_NO_READCHECK=5 No readcheck on update
174174
HA_EXTRA_READCHECK=6 Use readcheck (def)

Docs/optimizer_costs.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ MariaDB [test]> select sum(1) from seq_1_to_100000000;
179179
1 row in set (5.162 sec)
180180

181181
Time of where= (8.564-5.162)/100000000 = 3.402/100000000 (100,000,000)
182-
(Result good enough, as sligthly different computations)
182+
(Result is good enough for slightly different computations)
183183

184184
check_costs.pl comes provides the numbers when using heap tables and 1M rows:
185185

@@ -217,7 +217,7 @@ cost= scan_time() * optimizer_cache_cost * SCAN_LOOKUP_COST +
217217
We are ignoring TABLE_SCAN_SETUP (which is just to prefer index lookup on small
218218
tables).
219219
We can also ignore records * WHERE_COMPARE_COST as we don't have that
220-
in the above calcuated 'ms'.
220+
in the above calculated 'ms'.
221221
row_costs= (ROW_COPY_COST + ROW_LOOKUP_COST)
222222

223223
cost= scan_time() * 1 * 1 +
@@ -430,7 +430,7 @@ blocks= index_size/IO_SIZE =
430430
->
431431
1000000 * 19 / 0.75/ 4096 = 6184
432432
engine_blocks (block_size 8192) = 6184/2 = 3092
433-
(Range optimzer had calculated 3085)
433+
(Range optimizer had calculated 3085)
434434

435435
keyread_time= blocks * avg_io_cost() * cache + engine_blocks * INDEX_BLOCK_COPY_COST + rows * (KEY_NEXT_FIND_COST + KEY_COPY_COST);
436436
= engine_blocks * INDEX_BLOCK_COPY_COST + rows * KEY_NEXT_FIND_COST=
@@ -1258,7 +1258,7 @@ MySQL cost structures
12581258
MySQL 8.0 server cost are stored in the class Server_cost_constants defined
12591259
int opt_costconstants.h
12601260

1261-
It containts the following slots and has the following default values:
1261+
It contains the following slots and has the following default values:
12621262

12631263
m_row_evaluate_cost 0.1 Cost for evaluating the query condition on
12641264
a row

cmake/aws_sdk.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ FUNCTION (CHECK_AWS_SDK RETVAL REASON)
4343
ENDIF()
4444

4545
IF(UNIX)
46-
# Check librairies required for building SDK
46+
# Check libraries required for building SDK
4747
FIND_PACKAGE(CURL)
4848
SET_PACKAGE_PROPERTIES(CURL PROPERTIES TYPE REQUIRED)
4949
IF(NOT CURL_FOUND)

cmake/generate_sbom.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ FUNCTION(GENERATE_SBOM)
149149
LIST(FILTER ALL_SUBMODULES EXCLUDE REGEX libmariadb/docs)
150150

151151
# It is possible to provide EXTRA_SBOM_DEPENDENCIES
152-
# and accompanying per-dependency data, to extend generared sbom
152+
# and accompanying per-dependency data, to extend generated sbom
153153
# document.
154154
# Example below injects an extra "ncurses" dependency using several
155155
# command line parameters for CMake.

cmake/merge_archives_unix.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1335 USA
1616

1717

18-
# MRI scripts have a problem with +. It's a line contination character
18+
# MRI scripts have a problem with +. It's a line continuation character
1919
# unfortunately there is no escape character. We know we don't have
2020
# "+" in libraries or the MariaDB paths, but Ubuntu CI builds will have
2121
# in their CI path due to the package names that Ubuntu generates.

0 commit comments

Comments
 (0)