summaryrefslogtreecommitdiff
path: root/pod/perlfunc.pod
diff options
context:
space:
mode:
authorSteve Peters <steve@fisharerojo.org>2005-07-26 15:42:38 -0500
committerH.Merijn Brand <h.m.brand@xs4all.nl>2005-07-27 16:26:16 +0000
commit28a5cf3b760f8b6322a0839e3b3e060e7a6f23ea (patch)
tree12e0fd22a1cd3ffde0f4520840d1e83a44db99a9 /pod/perlfunc.pod
parentd3c62e8b294a3a45a5d44ea83433c15b6a39a198 (diff)
downloadperl-28a5cf3b760f8b6322a0839e3b3e060e7a6f23ea.tar.gz
id est is i.e.
Message-ID: <20050727014238.GA2582@mccoy.peters.homeunix.org> p4raw-id: //depot/perl@25229
Diffstat (limited to 'pod/perlfunc.pod')
-rw-r--r--pod/perlfunc.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index ed7d9b1fc7..c21ca0dde0 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -1181,7 +1181,7 @@ This is useful for propagating exceptions:
If LIST is empty and C<$@> contains an object reference that has a
C<PROPAGATE> method, that method will be called with additional file
and line number parameters. The return value replaces the value in
-C<$@>. ie. as if C<< $@ = eval { $@->PROPAGATE(__FILE__, __LINE__) }; >>
+C<$@>. i.e. as if C<< $@ = eval { $@->PROPAGATE(__FILE__, __LINE__) }; >>
were called.
If C<$@> is empty then the string C<"Died"> is used.
@@ -2995,7 +2995,7 @@ to the temporary file first. You will need to seek() to do the
reading.
Since v5.8.0, perl has built using PerlIO by default. Unless you've
-changed this (ie Configure -Uuseperlio), you can open file handles to
+changed this (i.e. Configure -Uuseperlio), you can open file handles to
"in memory" files held in Perl scalars via:
open($fh, '>', \$variable) || ..