From 6638d1466ac9fc334f294c2f9708974172b047cf Mon Sep 17 00:00:00 2001 From: Manish Date: Tue, 16 Jun 2026 17:36:34 +0530 Subject: [PATCH] Docs: Correct variable reference in wpdb::delete() DocBlock. Props YOUR_WP_ORG_USERNAME. Fixes #65470. --- src/wp-includes/class-wpdb.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/class-wpdb.php b/src/wp-includes/class-wpdb.php index e5300e6d75122..04ed70bcd8f71 100644 --- a/src/wp-includes/class-wpdb.php +++ b/src/wp-includes/class-wpdb.php @@ -2668,7 +2668,7 @@ public function _insert_replace_helper( $table, $data, $format = null, $type = ' * @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 + * If omitted, all values in $where will be treated as strings unless otherwise * specified in wpdb::$field_types. Default null. * @param string[]|string $where_format Optional. An array of formats to be mapped to each of the values in $where. * If string, that format will be used for all of the items in $where.