summaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2015-12-15 17:47:27 -0700
committerKarl Williamson <khw@cpan.org>2015-12-16 12:14:46 -0700
commit2d212e86d115af0ec7bda9d374433535fb9b20ab (patch)
tree61683867c51384f0f5a91b4683aea2190f377ca0 /utf8.c
parentfafdadbd9bc5a1631942dcbd40913421d206117e (diff)
downloadperl-2d212e86d115af0ec7bda9d374433535fb9b20ab.tar.gz
Change deprecation warning text
The old text used the passive voice. No 5.23 release has been made with the old text, so no perldelta changes are needed.
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utf8.c b/utf8.c
index 380d6ac6d1..45ee51e4c4 100644
--- a/utf8.c
+++ b/utf8.c
@@ -36,7 +36,7 @@
static const char unees[] =
"Malformed UTF-8 character (unexpected end of string)";
static const char cp_above_legal_max[] =
- "It is deprecated to use code point 0x%"UVXf"; the permissible max is 0x%"UVXf"";
+ "Use of code point 0x%"UVXf" is deprecated; the permissible max is 0x%"UVXf"";
#define MAX_NON_DEPRECATED_CP (IV_MAX)