From 799e129e1f30ad6c1823d1e2b378943528b043c9 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Thu, 19 Sep 2013 04:40:37 +0000 Subject: [PATCH] Clarify phpdoc descriptions for `esc_attr_x()` and `esc_html_x()`. props ericlewis. Fixes #24212. git-svn-id: https://develop.svn.wordpress.org/trunk@25493 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/l10n.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/l10n.php b/src/wp-includes/l10n.php index 42ac7ae627..7df80bd3d0 100644 --- a/src/wp-includes/l10n.php +++ b/src/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 *