Apply debian downstream spelling patch 481e21bf
gregor herrmann [Sat, 13 Feb 2016 18:56:13 +0000 (19:56 +0100)]
AUTHORS
Changes
lib/DBIx/Class.pm
lib/DBIx/Class/Manual/Cookbook.pod
lib/DBIx/Class/Manual/Troubleshooting.pod
lib/DBIx/Class/SQLMaker/LimitDialects.pm

diff --git a/AUTHORS b/AUTHORS
index 64007a9..086b0e0 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -81,6 +81,7 @@ Getty: Torsten Raudssus <torsten@raudss.us>
 goraxe: Gordon Irving <goraxe@cpan.org>
 gphat: Cory G Watson <gphat@cpan.org>
 Grant Street Group http://www.grantstreet.com/
+gregoa: Gregor Herrmann <gregoa@debian.org>
 groditi: Guillermo Roditi <groditi@cpan.org>
 gshank: Gerda Shank <gshank@cpan.org>
 guacamole: Fred Steinberg <fred.steinberg@gmail.com>
diff --git a/Changes b/Changes
index 6a575a8..9546752 100644 (file)
--- 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
index 33e84ce..a87cf4a 100644 (file)
@@ -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);
index d08022a..324ff64 100644 (file)
@@ -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
           }
 
index f6057d5..f5e06b8 100644 (file)
@@ -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
index 47027cb..0cfcd2b 100644 (file)
@@ -157,7 +157,7 @@ sub _rno_default_order {
 
  SELECT SKIP $offset FIRST $limit * FROM ...
 
-Suported by B<Informix>, almost like LimitOffset. According to
+Supported by B<Informix>, almost like LimitOffset. According to
 L<SQL::Abstract::Limit> C<... SKIP $offset LIMIT $limit ...> is also supported.
 
 =cut