summaryrefslogtreecommitdiff
path: root/pod/perlxs.pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-02-15 04:06:50 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-02-15 04:06:50 +0000
commitc2611fb358d57faaf2390cf4e8c5224abf2c4cc4 (patch)
treed0f9e8756b998ca1e637336596f3639eb40a3720 /pod/perlxs.pod
parentd2fe67bec76f22b4a4066b48714199469a8288c2 (diff)
downloadperl-c2611fb358d57faaf2390cf4e8c5224abf2c4cc4.tar.gz
patches suggested by John Bley <jbb6@acpub.duke.edu> (with minor edits)
Date: Wed, 3 Feb 1999 05:24:55 -0500 (EST) Message-ID: <Pine.SOL.3.91.990203051924.302A-100000@soc11.acpub.duke.edu> Subject: [PATCH]5.005_54 (DOC) fix many typos -- Date: Wed, 3 Feb 1999 08:53:53 -0500 (EST) Message-ID: <Pine.SOL.3.91.990203085157.895A-100000@soc11.acpub.duke.edu> Subject: [PATCH]5.005_54 (DOC) typos p4raw-id: //depot/perl@2929
Diffstat (limited to 'pod/perlxs.pod')
-rw-r--r--pod/perlxs.pod8
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perlxs.pod b/pod/perlxs.pod
index 89ddf3e132..98a983422f 100644
--- a/pod/perlxs.pod
+++ b/pod/perlxs.pod
@@ -181,10 +181,10 @@ directive is used which sets ST(0) explicitly.
Older versions of this document recommended to use C<void> return
value in such cases. It was discovered that this could lead to
-segfaults in cases when XSUB was I<truely> C<void>. This practice is
+segfaults in cases when XSUB was I<truly> C<void>. This practice is
now deprecated, and may be not supported at some future version. Use
the return value C<SV *> in such cases. (Currently C<xsubpp> contains
-some heuristic code which tries to disambiguate between "truely-void"
+some heuristic code which tries to disambiguate between "truly-void"
and "old-practice-declared-as-void" functions. Hence your code is at
mercy of this heuristics unless you use C<SV *> as return value.)
@@ -387,9 +387,9 @@ the same line where the input variable is declared. If the
initialization begins with C<;> or C<+>, then it is output after
all of the input variables have been declared. The C<=> and C<;>
cases replace the initialization normally supplied from the typemap.
-For the C<+> case, the initialization from the typemap will preceed
+For the C<+> case, the initialization from the typemap will precede
the initialization code included after the C<+>. A global
-variable, C<%v>, is available for the truely rare case where
+variable, C<%v>, is available for the truly rare case where
information from one initialization is needed in another
initialization.