From: gregor herrmann Date: Sat, 13 Feb 2016 18:56:13 +0000 (+0100) Subject: Apply debian downstream spelling patch 481e21bf X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4b0a90fd5;p=dbsrgits%2FDBIx-Class.git Apply debian downstream spelling patch 481e21bf --- diff --git a/AUTHORS b/AUTHORS index 64007a9..086b0e0 100644 --- a/AUTHORS +++ b/AUTHORS @@ -81,6 +81,7 @@ Getty: Torsten Raudssus goraxe: Gordon Irving gphat: Cory G Watson Grant Street Group http://www.grantstreet.com/ +gregoa: Gregor Herrmann groditi: Guillermo Roditi gshank: Gerda Shank guacamole: Fred Steinberg diff --git a/Changes b/Changes index 6a575a8..9546752 100644 --- a/Changes +++ b/Changes @@ -46,6 +46,7 @@ Revision history for DBIx::Class * Misc - Fix invalid variable names in ResultSource::View examples + - Typo fixes from downstream debian packagers (RT#112007) - Skip tests in a way more intelligent and speedy manner when optional dependencies are missing - Make the Optional::Dependencies error messages cpanm-friendly diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index 33e84ce..a87cf4a 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -214,7 +214,7 @@ Then you can use these classes in your application's code: my $cd = $millennium_cds_rs->next; # SELECT ... FROM cds JOIN artists ... my $cd_artist_name = $cd->artist->name; # Already has the data so no 2nd query - # new() makes a Result object but doesnt insert it into the DB. + # new() makes a Result object but doesn't insert it into the DB. # create() is the same as new() then insert(). my $new_cd = $schema->resultset('CD')->new({ title => 'Spoon' }); $new_cd->artist($cd->artist); diff --git a/lib/DBIx/Class/Manual/Cookbook.pod b/lib/DBIx/Class/Manual/Cookbook.pod index d08022a..324ff64 100644 --- a/lib/DBIx/Class/Manual/Cookbook.pod +++ b/lib/DBIx/Class/Manual/Cookbook.pod @@ -1342,7 +1342,7 @@ row. # Abort the whole job if ($_ =~ /horrible_problem/) { - print "something horrible happend, aborting job!"; + print "something horrible happened, aborting job!"; die $_; # rethrow error } diff --git a/lib/DBIx/Class/Manual/Troubleshooting.pod b/lib/DBIx/Class/Manual/Troubleshooting.pod index f6057d5..f5e06b8 100644 --- a/lib/DBIx/Class/Manual/Troubleshooting.pod +++ b/lib/DBIx/Class/Manual/Troubleshooting.pod @@ -122,7 +122,7 @@ Linux system (as well as their derivative distributions such as Centos, White Box and Scientific Linux). Distributions affected include Fedora 5 through to Fedora 8 and RHEL5 -upto and including RHEL5 Update 2. Fedora 9 (which uses perl 5.10) has +up to and including RHEL5 Update 2. Fedora 9 (which uses perl 5.10) has never been affected - this is purely a perl 5.8.8 issue. As of September 2008 the following packages are known to be fixed and so diff --git a/lib/DBIx/Class/SQLMaker/LimitDialects.pm b/lib/DBIx/Class/SQLMaker/LimitDialects.pm index 47027cb..0cfcd2b 100644 --- a/lib/DBIx/Class/SQLMaker/LimitDialects.pm +++ b/lib/DBIx/Class/SQLMaker/LimitDialects.pm @@ -157,7 +157,7 @@ sub _rno_default_order { SELECT SKIP $offset FIRST $limit * FROM ... -Suported by B, almost like LimitOffset. According to +Supported by B, almost like LimitOffset. According to L C<... SKIP $offset LIMIT $limit ...> is also supported. =cut