summaryrefslogtreecommitdiff
path: root/pod/perlop.pod
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-04-24 17:39:00 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-04-24 17:39:00 +0000
commit92d29cee5ff815b05b81b877528e4c77e73881c9 (patch)
tree1887469b52eec03299be2ab643c8a5310d73622e /pod/perlop.pod
parent85e0ebd8793b17cfbac766abc03b5fff57b2b2cd (diff)
downloadperl-92d29cee5ff815b05b81b877528e4c77e73881c9.tar.gz
Integrate with Sarathy.
p4raw-id: //depot/cfgperl@5937
Diffstat (limited to 'pod/perlop.pod')
-rw-r--r--pod/perlop.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod
index ce6fb66bc9..d847c99ab3 100644
--- a/pod/perlop.pod
+++ b/pod/perlop.pod
@@ -1412,7 +1412,7 @@ as C<"\\\t"> (since TAB is not alphanumeric). Note also that:
may be closer to the conjectural I<intention> of the writer of C<"\Q\t\E">.
Interpolated scalars and arrays are converted internally to the C<join> and
-C<.> catentation operations. Thus, C<"$foo XXX '@arr'"> becomes:
+C<.> catenation operations. Thus, C<"$foo XXX '@arr'"> becomes:
$foo . " XXX '" . (join $", @arr) . "'";