Skip to content

Commit 37fba95

Browse files
committed
Fix typo - missing word "avoid"
1 parent 06af6f1 commit 37fba95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Search_Replace_Command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ private static function esc_sql_ident( $idents ) {
657657
*/
658658
private static function esc_sql_value( $values ) {
659659
$quote = function ( $v ) {
660-
// Don't quote numeric values to MySQL's implicit type conversion.
660+
// Don't quote numeric values to avoid MySQL's implicit type conversion.
661661
if ( is_numeric( $v ) ) {
662662
return esc_sql( $v );
663663
}

0 commit comments

Comments
 (0)