Skip to content

Commit 3306576

Browse files
authored
Merge pull request #42 from szepeviktor/fix-typos
Fix typos
2 parents 44a7c4f + 676a1c9 commit 3306576

3 files changed

+8
-8
lines changed

wp-includes/sqlite/class-wp-sqlite-crosscheck-db.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,11 @@ private function crosscheck( $query, $sqlite_retval ) {
8282
continue;
8383
}
8484
if ( $factor === 'rows_affected' && $mysql_retval === $mysql ) {
85-
// SQLite doesn't provide the rowcount() functionallity
85+
// SQLite doesn't provide the rowcount() functionality
8686
continue;
8787
}
8888
if ( $factor === 'retval' && $GLOBALS['mysql']->rows_affected === $mysql ) {
89-
// SQLite doesn't provide the rowcount() functionallity
89+
// SQLite doesn't provide the rowcount() functionality
9090
continue;
9191
}
9292
echo "======================================================\n";

wp-includes/sqlite/class-wp-sqlite-pdo-user-defined-functions.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -446,11 +446,11 @@ public function isnull( $field ) {
446446
*
447447
* As 'IF' is a reserved word for PHP, function name must be changed.
448448
*
449-
* @param unknonw $expression the statement to be evaluated as true or false.
450-
* @param unknown $true statement or value returned if $expression is true.
451-
* @param unknown $false statement or value returned if $expression is false.
449+
* @param mixed $expression the statement to be evaluated as true or false.
450+
* @param mixed $true statement or value returned if $expression is true.
451+
* @param mixed $false statement or value returned if $expression is false.
452452
*
453-
* @return unknown
453+
* @return mixed
454454
*/
455455
public function _if( $expression, $true, $false ) {
456456
return ( true === $expression ) ? $true : $false;

wp-includes/sqlite/class-wp-sqlite-translator.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1683,9 +1683,9 @@ private function preprocess_string_literal( $value ) {
16831683
private function preprocess_like_expr( &$token ) {
16841684
/*
16851685
* This code handles escaped wildcards in LIKE clauses.
1686-
* If we are within a LIKE experession, we look for \_ and \%, the
1686+
* If we are within a LIKE expression, we look for \_ and \%, the
16871687
* escaped LIKE wildcards, the ones where we want a literal, not a
1688-
* wildcard match. We change the \ escape for an ASCII \x1a (SUB) character,
1688+
* wildcard match. We change the \ escape for an ASCII \x1A (SUB) character,
16891689
* so the \ characters won't get munged.
16901690
* These \_ and \% escape sequences are in the token name, because
16911691
* the lexer has already done stripcslashes on the value.

0 commit comments

Comments
 (0)