Minor POD spelling and link fixes
Jonathan Yu [Fri, 25 Feb 2011 12:11:29 +0000 (07:11 -0500)]
* Use proper L<Pod::Name/Section> style, rather than the incorrect
  L<Pod::Name#Section> style (thanks mst)
* Some minor spelling errors picked up by Lintian

lib/DBIx/Class.pm
lib/DBIx/Class/Manual/Features.pod
lib/DBIx/Class/ResultSource.pm
lib/DBIx/Class/Storage/DBI.pm

index ec883e8..e6cc6a7 100644 (file)
@@ -318,6 +318,8 @@ ilmari: Dagfinn Ilmari MannsE<aring>ker <ilmari@ilmari.org>
 
 initself: Mike Baas <mike@initselftech.com>
 
+jawnsy: Jonathan Yu <jawnsy@cpan.org>
+
 jasonmay: Jason May <jason.a.may@gmail.com>
 
 jesper: Jesper Krogh
index 4a8d6f1..86eb584 100644 (file)
@@ -12,7 +12,7 @@ support.
 
 =head2 Active Community
 
-Currently (June 9, 2010) 6 active branches (commited to
+Currently (June 9, 2010) 6 active branches (committed to
 in the last two weeks) in git.  Last release (0.08122)
 had 14 new features, and 16 bug fixes.  Of course that
 L<ebbs and flows|http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits/DBIx-Class.git;a=blob;f=Changes>.)
@@ -495,7 +495,7 @@ See: L<DBIx::Class::ResultSet/related_resultset>, L<DBIx::ClassResultSet/search_
 
 See L<DBIx::Class::Relationship::Base/create_related> and L<DBIx::Class::Relationship::Base/add_to_$rel>
 
-Note that it automaticaly fills in foreign key for you
+Note that it automatically fills in foreign key for you
 
 =head2 Excellent Transaction Support
 
@@ -646,7 +646,7 @@ See L<DBIx::Class::ResultSet/result_class> and L<DBIx::Class::ResultClass::HashR
      artist_id => { -in => $inner_query },
  });
 
-See L<DBIx::Class::Manual::Cookbook#Subqueries>
+See L<DBIx::Class::Manual::Cookbook/Subqueries>
 
 =head2 Bare SQL w/ Placeholders
 
@@ -661,5 +661,5 @@ Better:
     price => \['price + ?', [inc => $inc]],
  });
 
-See L<SQL::Abstract#Literal_SQL_with_placeholders_and_bind_values_(subqueries)>
+See L<SQL::Abstract/Literal_SQL_with_placeholders_and_bind_values_(subqueries)>
 
index 8b291e1..f9e8050 100644 (file)
@@ -427,7 +427,7 @@ sub columns {
   my $columns_info = $source->columns_info;
 
 Like L</column_info> but returns information for the requested columns. If
-the optional column-list arrayref is ommitted it returns info on all columns
+the optional column-list arrayref is omitted it returns info on all columns
 currently defined on the ResultSource via L</add_columns>.
 
 =cut
index 1448bc3..153b287 100644 (file)
@@ -2262,7 +2262,7 @@ sub select_single {
 =head2 sql_limit_dialect
 
 This is an accessor for the default SQL limit dialect used by a particular
-storage driver. Can be overriden by supplying an explicit L</limit_dialect>
+storage driver. Can be overridden by supplying an explicit L</limit_dialect>
 to L<DBIx::Class::Schema/connect>. For a list of available limit dialects
 see L<DBIx::Class::SQLMaker::LimitDialects>.