summaryrefslogtreecommitdiff
path: root/pod/perlxstut.pod
diff options
context:
space:
mode:
authorOffer Kaye <offer.kaye@gmail.com>2005-03-17 09:47:36 -0500
committerH.Merijn Brand <h.m.brand@xs4all.nl>2005-03-29 07:01:11 +0000
commit6b0ac556af9eedace4d32a9b51232914d1118023 (patch)
treea2811d49ea035c77bacb6f7a3e5d7e8edf16b01d /pod/perlxstut.pod
parenta212c8b5d0b264f0c7351db7e22b3b1b1178ca8b (diff)
downloadperl-6b0ac556af9eedace4d32a9b51232914d1118023.tar.gz
Make the spelling of whitespace (vs white-space and white space)
more consistent Message-ID: <5694250503171147668e73c7@mail.gmail.com> p4raw-id: //depot/perl@24090
Diffstat (limited to 'pod/perlxstut.pod')
-rw-r--r--pod/perlxstut.pod6
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perlxstut.pod b/pod/perlxstut.pod
index ceb65e0b5b..d1edf61a76 100644
--- a/pod/perlxstut.pod
+++ b/pod/perlxstut.pod
@@ -233,9 +233,9 @@ Add the following to the end of Mytest.xs:
OUTPUT:
RETVAL
-There does not need to be white space at the start of the "C<int input>"
+There does not need to be whitespace at the start of the "C<int input>"
line, but it is useful for improving readability. Placing a semi-colon at
-the end of that line is also optional. Any amount and kind of white space
+the end of that line is also optional. Any amount and kind of whitespace
may be placed between the "C<int>" and "C<input>".
Now re-run make to rebuild our new shared library.
@@ -413,7 +413,7 @@ of round is of type "void".
You specify the parameters that will be passed into the XSUB on the line(s)
after you declare the function's return value and name. Each input parameter
-line starts with optional white space, and may have an optional terminating
+line starts with optional whitespace, and may have an optional terminating
semicolon.
The list of output parameters occurs at the very end of the function, just