From ec42a73cefb945fa858722b9d8447d2de69e5476 Mon Sep 17 00:00:00 2001 From: Isabel Brison Date: Fri, 14 Jul 2023 05:16:21 +0000 Subject: [PATCH] Editor: fix typos in templates info. Fixes two small typos in `wp-includes/block-template-utils.php`. Props SergeyBiryukov. Fixes #58713. git-svn-id: https://develop.svn.wordpress.org/trunk@56230 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/block-template-utils.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/block-template-utils.php b/src/wp-includes/block-template-utils.php index 9776775377..c00628fc1b 100644 --- a/src/wp-includes/block-template-utils.php +++ b/src/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' ),