diff --git a/wp-includes/wp-db.php b/wp-includes/wp-db.php
index ae08158f64..83079dc585 100644
|
a
|
b
|
class wpdb {
|
| 1273 | 1273 | * |
| 1274 | 1274 | * Literal percentage signs (%) in the query string must be written as %%. Percentage wildcards (for example, |
| 1275 | 1275 | * to use in LIKE syntax) must be passed via a substitution argument containing the complete LIKE string, these |
| 1276 | | * cannot be inserted directly in the query string. Also see {@see esc_like()}. |
| | 1276 | * cannot be inserted directly in the query string. Also see https://codex.wordpress.org/Class_Reference/wpdb/esc_like#Description. |
| 1277 | 1277 | * |
| 1278 | 1278 | * Arguments may be passed as individual arguments to the method, or as a single array containing all arguments. A combination |
| 1279 | 1279 | * of the two is not supported. |