diff options
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlfaq4.pod | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pod/perlfaq4.pod b/pod/perlfaq4.pod index 99668d5c62..970100a28e 100644 --- a/pod/perlfaq4.pod +++ b/pod/perlfaq4.pod @@ -1172,16 +1172,18 @@ Stringification also destroys arrays. =head2 Why don't my E<lt>E<lt>HERE documents work? -Check for these three things: +Here documents are found in L<perlop>. Check for these three things: =over 4 =item There must be no space after the E<lt>E<lt> part. -=item There (probably) should be a semicolon at the end. +=item There (probably) should be a semicolon at the end of the opening token =item You can't (easily) have any space in front of the tag. +=item There needs to be at least a line separator after the end token. + =back If you want to indent the text in the here document, you |