diff options
author | Michael Stevens <mstevens@etla.org> | 2000-07-27 14:49:04 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-07-27 13:48:02 +0000 |
commit | 65841adfea0063c2125e7f78a10d9963c5625f4f (patch) | |
tree | 668f64ab817b6a4609af31da58938ff72d629c17 /pod | |
parent | d62e1b7f399551c90af66e0f875a63c4e21b5cc8 (diff) | |
download | perl-65841adfea0063c2125e7f78a10d9963c5625f4f.tar.gz |
fixes bug 20000508.004
Message-ID: <20000727134903.A9351@athenaeum.globnix.org>
p4raw-id: //depot/perl@6453
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perldata.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perldata.pod b/pod/perldata.pod index a2bb840b01..70ab1615f2 100644 --- a/pod/perldata.pod +++ b/pod/perldata.pod @@ -259,7 +259,7 @@ of sixteen buckets has been touched, and presumably contains all 10,000 of your items. This isn't supposed to happen. You can preallocate space for a hash by assigning to the keys() function. -This rounds up the allocated bucked to the next power of two: +This rounds up the allocated buckets to the next power of two: keys(%users) = 1000; # allocate 1024 buckets |