diff --git a/src/wp-includes/wp-db.php b/src/wp-includes/wp-db.php
index 0abb2fd066..e711c1709c 100644
a
|
b
|
class wpdb { |
1201 | 1201 | * |
1202 | 1202 | * Literal percentage signs (%) in the query string must be written as %%. Percentage wildcards (for example, |
1203 | 1203 | * to use in LIKE syntax) must be passed via a substitution argument containing the complete LIKE string, these |
1204 | | * cannot be inserted directly in the query string. Also see {@see esc_like()}. |
| 1204 | * cannot be inserted directly in the query string. Also see wpdb::esc_like(). |
1205 | 1205 | * |
1206 | 1206 | * Arguments may be passed as individual arguments to the method, or as a single array containing all arguments. A combination |
1207 | 1207 | * of the two is not supported. |