summaryrefslogtreecommitdiff
path: root/ext/DB_File
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-05-05 04:52:37 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-05-05 04:52:37 +0000
commit59e51af5496a55191ce0292f9b74dfab361d7fd4 (patch)
tree160e879db0ad7b589a5c80541d554467b319218d /ext/DB_File
parentd5f92636cfba103135e2664cae24bf7c4797b719 (diff)
downloadperl-59e51af5496a55191ce0292f9b74dfab361d7fd4.tar.gz
Doc nit from mjd.
p4raw-id: //depot/perl@19414
Diffstat (limited to 'ext/DB_File')
-rw-r--r--ext/DB_File/DB_File.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/DB_File/DB_File.pm b/ext/DB_File/DB_File.pm
index 2e5d85e818..fa94a39e45 100644
--- a/ext/DB_File/DB_File.pm
+++ b/ext/DB_File/DB_File.pm
@@ -966,7 +966,7 @@ Duplicate keys are entirely defined by the comparison function.
In the case-insensitive example above, the keys: 'KEY' and 'key'
would be considered duplicates, and assigning to the second one
would overwrite the first. If duplicates are allowed for (with the
-R_DUPS flag discussed below), only a single copy of duplicate keys
+R_DUP flag discussed below), only a single copy of duplicate keys
is stored in the database --- so (again with example above) assigning
three values to the keys: 'KEY', 'Key', and 'key' would leave just
the first key: 'KEY' in the database with three values. For some