From bd2425dd9c9ffdc9b4c266e62a3b80d71b23f254 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Thu, 19 Sep 2013 04:41:10 +0000 Subject: [PATCH] Clarify phpdoc descriptions for `esc_attr_x()` and `esc_html_x()`. props ericlewis. Fixes #24212. Built from https://develop.svn.wordpress.org/trunk@25493 git-svn-id: http://core.svn.wordpress.org/trunk@25414 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/l10n.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/l10n.php b/wp-includes/l10n.php index 42ac7ae627..7df80bd3d0 100644 --- a/wp-includes/l10n.php +++ b/wp-includes/l10n.php @@ -219,7 +219,7 @@ function _ex( $text, $context, $domain = 'default' ) { } /** - * Display translated string with gettext context, and escapes it for safe use in an attribute. + * Translate string with gettext context, and escapes it for safe use in an attribute. * * @since 2.8.0 * @@ -233,7 +233,7 @@ function esc_attr_x( $text, $context, $domain = 'default' ) { } /** - * Display translated string with gettext context, and escapes it for safe use in HTML output. + * Translate string with gettext context, and escapes it for safe use in HTML output. * * @since 2.9.0 *