diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 22ef697fe9..75b92889e7 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -1482,8 +1482,8 @@ function do_settings_sections( $page ) { * * @since 2.7.0 * - * @param string $page Slug title of the admin page who's settings fields you want to show. - * @param string $section Slug title of the settings section who's fields you want to show. + * @param string $page Slug title of the admin page whose settings fields you want to show. + * @param string $section Slug title of the settings section whose fields you want to show. */ function do_settings_fields( $page, $section ) { global $wp_settings_fields; @@ -1568,7 +1568,7 @@ function add_settings_error( $setting, $code, $message, $type = 'error' ) { * * @global array $wp_settings_errors Storage array of errors registered during this pageload * - * @param string $setting Optional slug title of a specific setting who's errors you want. + * @param string $setting Optional slug title of a specific setting whose errors you want. * @param boolean $sanitize Whether to re-sanitize the setting value before returning errors. * @return array Array of settings errors */ @@ -1631,7 +1631,7 @@ function get_settings_errors( $setting = '', $sanitize = false ) { * * @since 3.0.0 * - * @param string $setting Optional slug title of a specific setting who's errors you want. + * @param string $setting Optional slug title of a specific setting whose errors you want. * @param bool $sanitize Whether to re-sanitize the setting value before returning errors. * @param bool $hide_on_update If set to true errors will not be shown if the settings page has * already been submitted. diff --git a/wp-admin/includes/user.php b/wp-admin/includes/user.php index 4634c8e318..4e454c6a7f 100644 --- a/wp-admin/includes/user.php +++ b/wp-admin/includes/user.php @@ -244,7 +244,7 @@ function edit_user( $user_id = 0 ) { * Fetch a filtered list of user roles that the current user is * allowed to edit. * - * Simple function who's main purpose is to allow filtering of the + * Simple function whose main purpose is to allow filtering of the * list of roles in the $wp_roles object so that plugins can remove * inappropriate ones depending on the situation or user making edits. * Specifically because without filtering anyone with the edit_users diff --git a/wp-includes/version.php b/wp-includes/version.php index 627f8d6491..3f78a52218 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-43664'; +$wp_version = '5.0-alpha-43665'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.