Docs: Add a missing word in maybe_create_table() description.

Follow-up to [31246].

Props crstauf, james0r.
Fixes #58841.
Built from https://develop.svn.wordpress.org/trunk@56270


git-svn-id: http://core.svn.wordpress.org/trunk@55782 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2023-07-19 11:33:26 +00:00
parent b5ec731578
commit c0f28e113c
2 changed files with 2 additions and 2 deletions

View File

@ -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.
*

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.4-alpha-56268';
$wp_version = '6.4-alpha-56270';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.