summaryrefslogtreecommitdiff
path: root/pod/perlxstut.pod
diff options
context:
space:
mode:
authorAbhijit Menon-Sen <ams@wiw.org>2001-11-02 00:39:36 +0000
committerAbhijit Menon-Sen <ams@wiw.org>2001-11-02 00:39:36 +0000
commitda75cd15705fec9f427a4cc8a647f3b6919c6e04 (patch)
treea83f560164ed3cb4a0a89ca2c53dd1b656bc4beb /pod/perlxstut.pod
parentb239daa517b7055c05115178e7b786d4d4679731 (diff)
downloadperl-da75cd15705fec9f427a4cc8a647f3b6919c6e04.tar.gz
[PATCH] the the double double word word fix fix
From: Richard Soderberg <rs@oregonnet.com> Date: Thu, 1 Nov 2001 13:12:03 -0800 Message-Id: <200111012112.NAA23288@oregonnet.com> Subject: Re: [PATCH] the the double double word word fix fix From: Mark-Jason Dominus <mjd@plover.com> Date: Thu, 01 Nov 2001 16:43:40 -0500 Message-Id: <20011101214340.2044.qmail@plover.com> Subject: Re: [PATCH] the the double double word word fix fix From: Mark-Jason Dominus <mjd@plover.com> Date: Thu, 01 Nov 2001 16:51:39 -0500 Message-Id: <20011101215139.2196.qmail@plover.com> p4raw-id: //depot/perl@12802
Diffstat (limited to 'pod/perlxstut.pod')
-rw-r--r--pod/perlxstut.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlxstut.pod b/pod/perlxstut.pod
index ad648ebf37..4ce0597341 100644
--- a/pod/perlxstut.pod
+++ b/pod/perlxstut.pod
@@ -1186,7 +1186,7 @@ To create a reference, we use the C<newRV> function. Note that you can
cast an AV* or an HV* to type SV* in this case (and many others). This
allows you to take references to arrays, hashes and scalars with the same
function. Conversely, the C<SvRV> function always returns an SV*, which may
-need to be be cast to the appropriate type if it is something other than a
+need to be cast to the appropriate type if it is something other than a
scalar (check with C<SvTYPE>).
=item *