From 7157569a72a1c717171fbe171dc22f7b290c0503 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sun, 20 Aug 2017 20:37:47 +0000 Subject: [PATCH] Docs: Fix a typo in the DocBlock description for `add_shortcode()` introduced in [41281]. Props grapplerulrich. See #37222. git-svn-id: https://develop.svn.wordpress.org/trunk@41286 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/shortcodes.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/wp-includes/shortcodes.php b/src/wp-includes/shortcodes.php index 710291041b..c6df28b3dc 100644 --- a/src/wp-includes/shortcodes.php +++ b/src/wp-includes/shortcodes.php @@ -44,10 +44,10 @@ $shortcode_tags = array(); /** * Adds a new shortcode. * - * Care should be taken, either through prefixing or other means,to ensure - * that the shortcode tag being added is unique and will not conflict with - * other, already-added shortcode tags. In the event of a duplicated tag, the - * tag loaded last will take precedence. + * Care should be taken through prefixing or other means to ensure that the + * shortcode tag being added is unique and will not conflict with other, + * already-added shortcode tags. In the event of a duplicated tag, the tag + * loaded last will take precedence. * * @since 2.5.0 *