summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2012-05-11 09:48:49 -0700
committerFather Chrysostomos <sprout@cpan.org>2012-05-11 11:29:52 -0700
commit21c1039141283beed333de30964ee608a23a9d74 (patch)
treefd120c69b93e06bd9634c201fbc7a3f1a748fd80
parent9d83d6bdefc0b5b76ca6399f73d997776eaf5e48 (diff)
downloadperl-21c1039141283beed333de30964ee608a23a9d74.tar.gz
perldelta: Use single quotes in C<>
C<> renders as "..." in nroff, so C<... "..." ...> ends up looking weird.
-rw-r--r--pod/perldelta.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index 5d673d6150..15083f54ce 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -1572,7 +1572,7 @@ never documented anywhere. Now the perlfunc entry mentions it
=item *
-As an accident of history, C<open $fh, "<:", ...> applies the default
+As an accident of history, C<open $fh, '<:', ...> applies the default
layers for the platform (C<:raw> on Unix, C<:crlf> on Windows), ignoring
whatever is declared by L<open.pm|open>. This seems such a useful feature
it has been documented in L<perlfunc|perlfunc/open> and L<open>.