diff options
author | Perl 5 Porters <perl5-porters@africa.nicoh.com> | 1996-07-15 00:36:25 +0000 |
---|---|---|
committer | Charles Bailey <bailey@genetics.upenn.edu> | 1996-07-15 00:36:25 +0000 |
commit | c954a603b8f02c172ffe0fd3503b4d7ca983ad99 (patch) | |
tree | 73abb08ca471579b836d3c6aa18efcce51cd59bd /ext/GDBM_File | |
parent | d825a42e0a67d546192c470c4cca7da269ab90b1 (diff) | |
download | perl-c954a603b8f02c172ffe0fd3503b4d7ca983ad99.tar.gz |
Quote string argument in example -- necessary if using strict subs
Diffstat (limited to 'ext/GDBM_File')
-rw-r--r-- | ext/GDBM_File/GDBM_File.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/GDBM_File/GDBM_File.pm b/ext/GDBM_File/GDBM_File.pm index 3f1d83e004..9c7ae066b7 100644 --- a/ext/GDBM_File/GDBM_File.pm +++ b/ext/GDBM_File/GDBM_File.pm @@ -7,7 +7,7 @@ GDBM_File - Perl5 access to the gdbm library. =head1 SYNOPSIS use GDBM_File ; - tie %hash, GDBM_File, $filename, &GDBM_WRCREAT, 0640); + tie %hash, 'GDBM_File', $filename, &GDBM_WRCREAT, 0640); # Use the %hash array. untie %hash ; |