summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2012-08-02 09:52:27 -0700
committerFather Chrysostomos <sprout@cpan.org>2012-08-02 10:02:04 -0700
commit6f2d7fc9985768a64278f137e02957c70004834d (patch)
tree867f2a93678fb965f2465ecf3b4bc857ff8345e2 /pod
parent70306497846f7e53e9b28c68000cd89aff8ca5ee (diff)
downloadperl-6f2d7fc9985768a64278f137e02957c70004834d.tar.gz
[perl #114104] Better error for unterminated heredoc delim
Diffstat (limited to 'pod')
-rw-r--r--pod/perldiag.pod12
1 files changed, 12 insertions, 0 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod
index 327f392e85..536764d93b 100644
--- a/pod/perldiag.pod
+++ b/pod/perldiag.pod
@@ -5203,6 +5203,18 @@ character to get your parentheses to balance. See L<attributes>.
compressed integer format and could not be converted to an integer.
See L<perlfunc/pack>.
+=item Unterminated delimiter for here document
+
+(F) This message occurs when a here document label has an initial
+quotation mark but the final quotation mark is missing. Perhaps
+you wrote:
+
+ <<"foo
+
+instead of:
+
+ <<"foo"
+
=item Unterminated \g{...} pattern in regex; marked by <-- HERE in m/%s/
(F) You missed a close brace on a \g{..} pattern (group reference) in