diff options
author | Steven Schubiger <schubiger@cpan.org> | 2005-10-31 23:48:27 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-11-10 10:52:51 +0000 |
commit | 4358a253560c226dd674c77f83b913c071c4fa25 (patch) | |
tree | d5881aefffcd9b943217161889e849dfb97df0ec /pod/perlxs.pod | |
parent | 42d1cefd9a529012253aff0d502edf7a4f6a6ac3 (diff) | |
download | perl-4358a253560c226dd674c77f83b913c071c4fa25.tar.gz |
remove whitespace preceding semicolon in docs
Message-ID: <20051031214827.GH24416@accognoscere.homeunix.org>
p4raw-id: //depot/perl@26073
Diffstat (limited to 'pod/perlxs.pod')
-rw-r--r-- | pod/perlxs.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlxs.pod b/pod/perlxs.pod index 7360c57d10..462f84ce3f 100644 --- a/pod/perlxs.pod +++ b/pod/perlxs.pod @@ -588,7 +588,7 @@ Here's a truly obscure example: bool_t rpcb_gettime(host,timep) - time_t &timep ; /* \$v{timep}=@{[$v{timep}=$arg]} */ + time_t &timep; /* \$v{timep}=@{[$v{timep}=$arg]} */ char *host + SvOK($v{timep}) ? SvPV($arg,PL_na) : NULL; OUTPUT: timep @@ -1902,7 +1902,7 @@ Below is an example module that makes use of the macros. dMY_CXT; CODE: if (MY_CXT.count >= 3) { - warn("Already have 3 blind mice") ; + warn("Already have 3 blind mice"); RETVAL = 0; } else { |