From 6281ce432c50345a57768bf53854d9b65b6cdd52 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 19 Jul 2023 11:31:15 +0000 Subject: [PATCH] Docs: Add a missing word in `maybe_create_table()` description. Follow-up to [31246]. Props crstauf, james0r. Fixes #58841. git-svn-id: https://develop.svn.wordpress.org/trunk@56270 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/upgrade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/includes/upgrade.php b/src/wp-admin/includes/upgrade.php index d0467505d9..23653d1c2b 100644 --- a/src/wp-admin/includes/upgrade.php +++ b/src/wp-admin/includes/upgrade.php @@ -2485,7 +2485,7 @@ function upgrade_network() { /** * Creates a table in the database, if it doesn't already exist. * - * This method checks for an existing database and creates a new one if it's not + * This method checks for an existing database table and creates a new one if it's not * already present. It doesn't rely on MySQL's "IF NOT EXISTS" statement, but chooses * to query all tables first and then run the SQL statement creating the table. *