summaryrefslogtreecommitdiff
path: root/pod/perltrap.pod
diff options
context:
space:
mode:
authorFlorian Ragwitz <rafl@debian.org>2010-08-22 05:52:56 +0200
committerFlorian Ragwitz <rafl@debian.org>2010-08-22 05:53:42 +0200
commitc64db6b5edaac4f953f143b95b575c190e9dbe97 (patch)
treebbd356a65a66f02469dd7a2c84680d9c7cf9e496 /pod/perltrap.pod
parent510966aa601964fcdb06b3cdf4dc8e1241107f1a (diff)
downloadperl-c64db6b5edaac4f953f143b95b575c190e9dbe97.tar.gz
Add missing space in perltrap
It looks as though a space was inadvertently removed. The example makes no sense without it.
Diffstat (limited to 'pod/perltrap.pod')
-rw-r--r--pod/perltrap.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perltrap.pod b/pod/perltrap.pod
index b5f0935166..31234369c0 100644
--- a/pod/perltrap.pod
+++ b/pod/perltrap.pod
@@ -497,7 +497,7 @@ of a variable, or as a delimiter for any kind of quote construct.
Double darn.
$a = ("foo bar");
- $b = q baz;
+ $b = q baz ;
print "a is $a, b is $b\n";
# perl4 prints: a is foo bar, b is baz