perldelta: Use single quotes in C<>
authorFather Chrysostomos <sprout@cpan.org>
Fri, 11 May 2012 16:48:49 +0000 (09:48 -0700)
committerFather Chrysostomos <sprout@cpan.org>
Fri, 11 May 2012 18:29:52 +0000 (11:29 -0700)
C<> renders as "..." in nroff, so C<... "..." ...> ends up looking weird.

pod/perldelta.pod

index 5d673d6..15083f5 100644 (file)
@@ -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>.