[svn:parrot] r42188 - trunk/docs/book/pir
jkeenan at svn.parrot.org
jkeenan at svn.parrot.org
Sat Oct 31 13:44:39 UTC 2009
Author: jkeenan
Date: Sat Oct 31 13:44:38 2009
New Revision: 42188
URL: https://trac.parrot.org/parrot/changeset/42188
Log:
Correct documentation bug: wordspace after '<<' impeded proper heredoc parsing.
Modified:
trunk/docs/book/pir/ch04_variables.pod
Modified: trunk/docs/book/pir/ch04_variables.pod
==============================================================================
--- trunk/docs/book/pir/ch04_variables.pod Sat Oct 31 13:04:23 2009 (r42187)
+++ trunk/docs/book/pir/ch04_variables.pod Sat Oct 31 13:44:38 2009 (r42188)
@@ -403,7 +403,7 @@
terminator must appear on its own line, must appear at the beginning of the
line, and may not have any trailing whitespace.
- $S2 = << "End_Token"
+ $S2 = <<"End_Token"
This is a multi-line string literal. Notice that
it doesn't use quotation marks.
End_Token
More information about the parrot-commits
mailing list