typos in change#4623
[p5sagit/p5-mst-13.2.git] / ext / ODBM_File / ODBM_File.pm
1 package ODBM_File;
2
3 use strict;
4
5 require Tie::Hash;
6 use XSLoader ();
7
8 our @ISA = qw(Tie::Hash);
9 our $VERSION = "1.02";
10
11 XSLoader::load 'ODBM_File', $VERSION;
12
13 1;
14
15 __END__
16
17 =head1 NAME
18
19 ODBM_File - Tied access to odbm files
20
21 =head1 SYNOPSIS
22
23  use ODBM_File;
24
25  tie(%h, 'ODBM_File', 'Op.dbmx', O_RDWR|O_CREAT, 0640);
26
27  untie %h;
28
29 =head1 DESCRIPTION
30
31 See L<perlfunc/tie>, L<perldbmfilter>
32
33 =cut