diff options
author | Karl Williamson <khw@cpan.org> | 2015-12-15 17:47:27 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2015-12-16 12:14:46 -0700 |
commit | 2d212e86d115af0ec7bda9d374433535fb9b20ab (patch) | |
tree | 61683867c51384f0f5a91b4683aea2190f377ca0 /utf8.c | |
parent | fafdadbd9bc5a1631942dcbd40913421d206117e (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |