summaryrefslogtreecommitdiff
path: root/pod/perlxs.pod
diff options
context:
space:
mode:
authorDavid Landgren <david@landgren.net>2007-09-28 22:42:56 +0200
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-10-04 14:28:34 +0000
commit353c650532037e4006fbdb2176350717f320f7c3 (patch)
treed168025606b4a4daf862755b087c4ba3b29e97b5 /pod/perlxs.pod
parent94fcd414575e04d8b809003ba7bca1216090abff (diff)
downloadperl-353c650532037e4006fbdb2176350717f320f7c3.tar.gz
POD cleanups
Message-ID: <46FD4B30.9070802@landgren.net> p4raw-id: //depot/perl@32026
Diffstat (limited to 'pod/perlxs.pod')
-rw-r--r--pod/perlxs.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlxs.pod b/pod/perlxs.pod
index 966cdc89df..facfcf91ab 100644
--- a/pod/perlxs.pod
+++ b/pod/perlxs.pod
@@ -554,7 +554,7 @@ exception happens if this C<;> terminates the line, then this C<;>
is quietly ignored.
The following code demonstrates how to supply initialization code for
-function parameters. The initialization code is eval'd within double
+function parameters. The initialization code is eval'ed within double
quotes by the compiler before it is added to the output so anything
which should be interpreted literally [mainly C<$>, C<@>, or C<\\>]
must be protected with backslashes. The variables $var, $arg,
@@ -1313,7 +1313,7 @@ this:
In this case, the function will overload both of the three way
comparison operators. For all overload operations using non-alpha
-characters, you must type the parameter without quoting, seperating
+characters, you must type the parameter without quoting, separating
multiple overloads with whitespace. Note that "" (the stringify
overload) should be entered as \"\" (i.e. escaped).