summaryrefslogtreecommitdiff
path: root/pod/perltrap.pod
diff options
context:
space:
mode:
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