aboutsummaryrefslogtreecommitdiff
path: root/perl/Wallet/Database.pm
diff options
context:
space:
mode:
authorRuss Allbery <rra@stanford.edu>2010-02-09 23:19:27 -0800
committerRuss Allbery <rra@stanford.edu>2010-02-09 23:19:27 -0800
commitae02de1488068b84371b05842c81a9aecc5f24c4 (patch)
treef3b570e9f30aff1279fd39e9b212572feee84a9d /perl/Wallet/Database.pm
parent0f81ba24e021a63d42c51ee9bec6e521fc540251 (diff)
Check spelling of server API POD and tweak server docs
Also update the POD syntax check to the current version of that check I use elsewhere. Since I'm touching all the POD anyway, also rewrap all of the POD to 74 columns. Fix some references to MIT in the Wallet::Kadmin::Heimdal module documentation.
Diffstat (limited to 'perl/Wallet/Database.pm')
-rw-r--r--perl/Wallet/Database.pm17
1 files changed, 10 insertions, 7 deletions
diff --git a/perl/Wallet/Database.pm b/perl/Wallet/Database.pm
index 68fb6bb..7b3474a 100644
--- a/perl/Wallet/Database.pm
+++ b/perl/Wallet/Database.pm
@@ -6,7 +6,7 @@
# like DBI objects in the rest of the code.
#
# Written by Russ Allbery <rra@stanford.edu>
-# Copyright 2008 Board of Trustees, Leland Stanford Jr. University
+# Copyright 2008, 2010 Board of Trustees, Leland Stanford Jr. University
#
# See LICENSE for licensing terms.
@@ -39,7 +39,7 @@ use Wallet::Config;
# This version should be increased on any code change to this module. Always
# use two digits for the minor version with a leading zero if necessary so
# that it will sort properly.
-$VERSION = '0.01';
+$VERSION = '0.02';
##############################################################################
# Core overrides
@@ -84,6 +84,9 @@ __END__
Wallet::Dabase - Wrapper module for wallet database connections
+=for stopwords
+DBI RaiseError PrintError AutoCommit Allbery
+
=head1 SYNOPSIS
use Wallet::Database;
@@ -93,9 +96,9 @@ Wallet::Dabase - Wrapper module for wallet database connections
Wallet::Database is a thin wrapper module around DBI that takes care of
building a connect string and setting database options based on wallet
-configuration. The only overriden method is connect(). All other methods
-should work the same as in DBI and Wallet::Database objects should be
-usable exactly as if they were DBI objects.
+configuration. The only overridden method is connect(). All other
+methods should work the same as in DBI and Wallet::Database objects should
+be usable exactly as if they were DBI objects.
connect() will obtain the database connection information from the wallet
configuration; see Wallet::Config(3) for more details. It will also
@@ -120,8 +123,8 @@ configuration.
DBI(3), Wallet::Config(3)
-This module is part of the wallet system. The current version is available
-from L<http://www.eyrie.org/~eagle/software/wallet/>.
+This module is part of the wallet system. The current version is
+available from L<http://www.eyrie.org/~eagle/software/wallet/>.
=head1 AUTHOR