1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
Description: Fix spelling error in manpage
Author: Lucas Kanashiro <kanashiro.duarte@gmail.com>
Last-Update: 2015-12-23
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=110551
Bug: https://rt.cpan.org/Ticket/Display.html?id=110551
--- a/lib/Test/Database.pm
+++ b/lib/Test/Database.pm
@@ -377,7 +377,7 @@ used if they are not provided.
Empty lines and comments are ignored.
-Optionaly, the C<key> section is used to add a "unique" element to the
+Optionally, the C<key> section is used to add a "unique" element to the
databases created by the drivers (as defined by C<driver_dsn>). It
allows several hosts to share access to the same database server
without risking a race condition when creating a new database. See
--- a/lib/Test/Database/Tutorial.pod
+++ b/lib/Test/Database/Tutorial.pod
@@ -86,7 +86,7 @@ L<Test::Database> has a single interface
my @handles = Test::Database->handles( @requests );
C<@request> is a list of "requests" for databases handles. Requests
-must declare the DBD they expect, and can optionaly add version-based
+must declare the DBD they expect, and can optionally add version-based
limitations (only available for drivers supported by L<Test::Database>).
The handles returned are objects of the L<Test::Database::Handle> class.
|