From fc6f16bd570b830b16f8ea1e2f1a03485d8ec3a4 Mon Sep 17 00:00:00 2001 From: isabel_brison Date: Fri, 14 Jul 2023 05:18:22 +0000 Subject: [PATCH] Editor: fix typos in templates info. Fixes two small typos in `wp-includes/block-template-utils.php`. Props SergeyBiryukov. Fixes #58713. Built from https://develop.svn.wordpress.org/trunk@56230 git-svn-id: http://core.svn.wordpress.org/trunk@55742 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/block-template-utils.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/block-template-utils.php b/wp-includes/block-template-utils.php index 9776775377..c00628fc1b 100644 --- a/wp-includes/block-template-utils.php +++ b/wp-includes/block-template-utils.php @@ -147,7 +147,7 @@ function get_default_block_template_types() { ), 'category' => array( 'title' => _x( 'Category Archives', 'Template name' ), - 'description' => __( 'Displays a post category archive. This template will serve as a fallback when more specific template (e.g., Category: Recipes) cannot be found.' ), + 'description' => __( 'Displays a post category archive. This template will serve as a fallback when a more specific template (e.g., Category: Recipes) cannot be found.' ), ), 'taxonomy' => array( 'title' => _x( 'Taxonomy', 'Template name' ), @@ -159,7 +159,7 @@ function get_default_block_template_types() { ), 'tag' => array( 'title' => _x( 'Tag Archives', 'Template name' ), - 'description' => __( 'Displays a post tag archive. This template will serve as a fallback when more specific template (e.g., Tag: Pizza) cannot be found.' ), + 'description' => __( 'Displays a post tag archive. This template will serve as a fallback when a more specific template (e.g., Tag: Pizza) cannot be found.' ), ), 'attachment' => array( 'title' => __( 'Attachment Pages' ), diff --git a/wp-includes/version.php b/wp-includes/version.php index 25ce097cb6..61134f091a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-beta4-56229'; +$wp_version = '6.3-beta4-56230'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.