diff --git a/src/wp-includes/class-wpdb.php b/src/wp-includes/class-wpdb.php index babd45a885f1c..e8a3587d1d126 100644 --- a/src/wp-includes/class-wpdb.php +++ b/src/wp-includes/class-wpdb.php @@ -2494,7 +2494,7 @@ public function remove_placeholder_escape( $query ) { * Both `$data` columns and `$data` values should be "raw" (neither should be SQL escaped). * Sending a null value will cause the column to be set to NULL - the corresponding * format is ignored in this case. - * @param string[]|string $format Optional. An array of formats to be mapped to each of the value in `$data`. + * @param string[]|string $format Optional. An array of formats to be mapped to each of the values in `$data`. * If string, that format will be used for all of the values in `$data`. * A format is one of '%d', '%f', '%s' (integer, float, string). * If omitted, all values in `$data` will be treated as strings unless otherwise @@ -2547,7 +2547,7 @@ public function insert( $table, $data, $format = null ) { * A primary key or unique index is required to perform a replace operation. * Sending a null value will cause the column to be set to NULL - the corresponding * format is ignored in this case. - * @param string[]|string $format Optional. An array of formats to be mapped to each of the value in `$data`. + * @param string[]|string $format Optional. An array of formats to be mapped to each of the values in `$data`. * If string, that format will be used for all of the values in `$data`. * A format is one of '%d', '%f', '%s' (integer, float, string). * If omitted, all values in `$data` will be treated as strings unless otherwise @@ -2574,7 +2574,7 @@ public function replace( $table, $data, $format = null ) { * Both `$data` columns and `$data` values should be "raw" (neither should be SQL escaped). * Sending a null value will cause the column to be set to NULL - the corresponding * format is ignored in this case. - * @param string[]|string $format Optional. An array of formats to be mapped to each of the value in `$data`. + * @param string[]|string $format Optional. An array of formats to be mapped to each of the values in `$data`. * If string, that format will be used for all of the values in `$data`. * A format is one of '%d', '%f', '%s' (integer, float, string). * If omitted, all values in `$data` will be treated as strings unless otherwise