[svn:dbi] r14178 - in dbi/trunk: . lib/DBD lib/DBD/File

[email protected]
Newsgroups perl.dbi.changes
Message-ID <[email protected]>
Author: hmbrand
Date: Sat Jun 19 01:06:28 2010
New Revision: 14178

Added:
   dbi/trunk/.aspell.local.pws
Modified:
   dbi/trunk/lib/DBD/DBM.pm
   dbi/trunk/lib/DBD/File/Developers.pod

Log:
Spell-checking

Added: dbi/trunk/.aspell.local.pws
==============================================================================
--- (empty file)
+++ dbi/trunk/.aspell.local.pws	Sat Jun 19 01:06:28 2010
@@ -0,0 +1,111 @@
+personal_ws-1.1 en_EN 110
+AIX
+ALRM
+Alzabo
+API
+APIs
+aren
+arrayrefs
+ArrayTupleFetch
+ArrayTupleStatus
+Autocommit
+backend
+Baumgarten
+BerkeleyDB
+BizRate
+Bloggs
+Bourne
+Briscoe
+browsable
+btree
+CGI
+ChildHandles
+Christiansen
+CLOB
+cpan
+cpanforum
+CSV
+CTO
+Ctrl
+CursorName
+CVS
+DBD
+DBDs
+dbh
+dbi
+dbilogstrip
+dbm
+de
+dir
+doesn
+dr
+drh
+DSN
+Dunlop
+EINTR
+eval
+filename
+googlemail
+GPL
+HandleError
+HandleSetErr
+hashrefs
+hasn
+Haworth
+implementor
+Informix
+INI
+IRC
+isn
+iso
+JDBC
+Jochen
+jzucker
+lang
+latin
+lck
+Leffler
+lettercase
+lockfile
+LongReadLen
+LongTruncOk
+lookup
+lookups
+Mergl
+metadata
+microsoft
+Migliavacca
+MLDBM
+Moschetti
+MSDN
+multi
+MyFancyLogger
+namespace
+Nano
+nl
+NULLABLE
+pag
+pre
+readonly
+refactoring
+Rehsack
+rehsack
+serializer
+serializers
+Solaris
+speeded
+st
+sth
+Storable
+subdirectories
+txt
+unrecognised
+usenet
+UTF
+versa
+wasn
+Wiedmann
+wildcard
+wildcards
+YAML
+Zucker

Modified: dbi/trunk/lib/DBD/DBM.pm
==============================================================================
--- dbi/trunk/lib/DBD/DBM.pm	(original)
+++ dbi/trunk/lib/DBD/DBM.pm	Sat Jun 19 01:06:28 2010
@@ -724,7 +724,7 @@
 into tables.
 
 DBD::DBM has been tested with the following DBM types: SDBM_File,
-NDBM_File, ODBM_File, GDBM_File, DB_File, BerekeleyDB.  Each type was
+NDBM_File, ODBM_File, GDBM_File, DB_File, BerkeleyDB.  Each type was
 tested both with and without MLDBM and serializers Data::Dumper, Storable,
 FreezeThaw and YAML.
 
@@ -767,7 +767,7 @@
 This chapter will explain some use cases a bit deeper. To get an overview
 about the available attributes, see L</Metadata>.
 
-=head2 Specifiying Files and Directories
+=head2 Specifying Files and Directories
 
 DBD::DBM will automatically supply an appropriate file extension for the
 type of DBM you are using.  For example, if you use SDBM_File, a table
@@ -1313,8 +1313,8 @@
 If you are using MLDBM, you can use DBD::DBM to take advantage of its
 serializing abilities to serialize any Perl object that MLDBM can handle.
 To store objects in columns, you should (but don't absolutely need to)
-declare it as a column of type BLOB (the type is *currently* ignored by the
-SQL engine, but heh, it's good form).
+declare it as a column of type BLOB (the type is *currently* ignored by
+the SQL engine, but it's good form).
 
 =head1 GOTCHAS AND WARNINGS
 
@@ -1377,7 +1377,7 @@
 at [email protected] for commercial support in Germany.
 
 Please don't bother Jochen Wiedmann or Jeff Zucker for support - they
-handed over further maintenence to H.Merijn Brand and Jens Rehsack.
+handed over further maintenance to H.Merijn Brand and Jens Rehsack.
 
 =head1 ACKNOWLEDGEMENTS
 

Modified: dbi/trunk/lib/DBD/File/Developers.pod
==============================================================================
--- dbi/trunk/lib/DBD/File/Developers.pod	(original)
+++ dbi/trunk/lib/DBD/File/Developers.pod	Sat Jun 19 01:06:28 2010
@@ -236,7 +236,7 @@
 
 Override it to add more version information about your module, (e.g.
 some kind of parser version in case of DBD::CSV, ...), if one line is not
-enought room to provide all relevant information.
+enough room to provide all relevant information.
 
 =item get_single_table_meta
 
@@ -354,7 +354,7 @@
 =item fetch
 
 Fetches the next row from the result-set. This method may be rewritten
-in a later version and if it's overriden in a derived class, the
+in a later version and if it's overridden in a derived class, the
 derived implementation should not rely on the storage details.
 
 =item fetchrow_arrayref
@@ -375,7 +375,7 @@
 
 =item STORE
 
-Allowes storing of statement private attributes.
+Allows storing of statement private attributes.
 
 =item rows
 
@@ -394,7 +394,7 @@
 
 Implements the open_table method required by L<SQL::Statement> and
 L<DBI::SQL::Nano>. All the work for opening the file(s) belonging to the
-table is handled and parameterized in DBD::File::Table. Unless you intend
+table is handled and parametrized in DBD::File::Table. Unless you intend
 to add anything to the following implementation, an empty DBD::XXX::Statement
 package satisfies DBD::File.
 
@@ -437,9 +437,9 @@
 
 =item bootstrap_table_meta
 
-Initializes a table meta structure. Can be safely overriden in a
+Initializes a table meta structure. Can be safely overridden in a
 derived class, as long as the C<< SUPER >> method is called at the end
-of the overriden method.
+of the overridden method.
 
 It copies the following attributes from the database into the table meta data
 C<< f_dir >>, C<< f_ext >>, C<< f_encoding >>, C<< f_lock >>, C<< f_schema >>,
@@ -488,7 +488,7 @@
 too. Depending on the value in C<< f_lock >>, the appropriate lock is
 set on the opened data file or lock file.
 
-After this is done, a derived class might add more steps in an overriden
+After this is done, a derived class might add more steps in an overridden
 C<< open_file >> method.
 
 =item new
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.