From 35af67f47d9547aff7d857f45e4444d00652c935 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov <sergeybiryukov.ru@gmail.com> Date: Thu, 1 Aug 2024 20:32:19 +0000 Subject: [PATCH] Docs: Correct some typos in a comment in `wp_salt()`. Follow-up to [58837]. Props kebbet. Fixes #59871. Built from https://develop.svn.wordpress.org/trunk@58838 git-svn-id: http://core.svn.wordpress.org/trunk@58234 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/pluggable.php | 8 ++++---- wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/wp-includes/pluggable.php b/wp-includes/pluggable.php index ae5355f9c6..8380a59724 100644 --- a/wp-includes/pluggable.php +++ b/wp-includes/pluggable.php @@ -2491,12 +2491,12 @@ if ( ! function_exists( 'wp_salt' ) ) : /* * Also prime `secret_key` used for undefined salting schemes. * - * If the scheme is unknown the default value for `secret_key` will be - * used to for the salt. This should rarely happen so the option is only + * If the scheme is unknown, the default value for `secret_key` will be + * used too for the salt. This should rarely happen, so the option is only * primed if other salts are undefined. * - * At this point of execution is is known that a database call will be made - * to prime salts so the `secret_key` option can be primed regardless of the + * At this point of execution it is known that a database call will be made + * to prime salts, so the `secret_key` option can be primed regardless of the * constants status. */ $options_to_prime[] = 'secret_key'; diff --git a/wp-includes/version.php b/wp-includes/version.php index 6c2814dd17..f478068ada 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-alpha-58837'; +$wp_version = '6.7-alpha-58838'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.