summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2007-06-24 15:46:40 +0000
committerNicholas Clark <nick@ccl4.org>2007-06-24 15:46:40 +0000
commit38a44b824c7566670d69f5e214106e1866ce72fe (patch)
tree8938dc96d0dae69214f68d7f8ce3fd0b5ef95b7d /ext
parentcb23d5b19261a41b403a114d55551ddac48af175 (diff)
downloadperl-38a44b824c7566670d69f5e214106e1866ce72fe.tar.gz
s/\bunicode\b/Unicode/; # For everything not dual life
p4raw-id: //depot/perl@31455
Diffstat (limited to 'ext')
-rw-r--r--ext/Data/Dumper/Dumper.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/Data/Dumper/Dumper.pm b/ext/Data/Dumper/Dumper.pm
index 1c1fb6d552..19ac1c44af 100644
--- a/ext/Data/Dumper/Dumper.pm
+++ b/ext/Data/Dumper/Dumper.pm
@@ -9,7 +9,7 @@
package Data::Dumper;
-$VERSION = '2.121_12';
+$VERSION = '2.121_13';
#$| = 1;
@@ -498,7 +498,7 @@ sub _dump {
}
else { # string
if ($s->{useqq} or $val =~ tr/\0-\377//c) {
- # Fall back to qq if there's unicode
+ # Fall back to qq if there's Unicode
$out .= qquote($val, $s->{useqq});
}
else {