summaryrefslogtreecommitdiff
path: root/pod/perlfaq4.pod
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-10-27 15:24:06 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-10-27 15:24:06 +0000
commit5efd70605bdbcb21bc9d02baed8f81a7732a7464 (patch)
tree281f381832cdaff464ec3c9aed168b67b4b89f73 /pod/perlfaq4.pod
parentcf5d53576cc1e3c080a92ee53f011a1ccebf21fe (diff)
downloadperl-5efd70605bdbcb21bc9d02baed8f81a7732a7464.tar.gz
FAQ sync.
p4raw-id: //depot/perl@12706
Diffstat (limited to 'pod/perlfaq4.pod')
-rw-r--r--pod/perlfaq4.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlfaq4.pod b/pod/perlfaq4.pod
index 6cd2d9a93e..faccc22d29 100644
--- a/pod/perlfaq4.pod
+++ b/pod/perlfaq4.pod
@@ -1,6 +1,6 @@
=head1 NAME
-perlfaq4 - Data Manipulation ($Revision: 1.6 $, $Date: 2001/10/23 04:39:28 $)
+perlfaq4 - Data Manipulation ($Revision: 1.7 $, $Date: 2001/10/26 19:46:03 $)
=head1 DESCRIPTION
@@ -225,7 +225,7 @@ Using pack and unpack for larger strings
substr("0" x 32 . "11110101011011011111011101111", -32)));
$dec = sprintf("%d", $int);
- Substr() is used to left pad a 32 character string with zeros.
+ # substr() is used to left pad a 32 character string with zeros.
Using Bit::Vector: