From: Jonathan Yu Date: Fri, 25 Feb 2011 12:11:29 +0000 (-0500) Subject: Minor POD spelling and link fixes X-Git-Tag: v0.08191~73 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f165eda8a5bb8140f9b40d78089d5db3d8edf572;p=dbsrgits%2FDBIx-Class.git Minor POD spelling and link fixes * Use proper L style, rather than the incorrect L style (thanks mst) * Some minor spelling errors picked up by Lintian --- diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index ec883e8..e6cc6a7 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -318,6 +318,8 @@ ilmari: Dagfinn Ilmari MannsEker initself: Mike Baas +jawnsy: Jonathan Yu + jasonmay: Jason May jesper: Jesper Krogh diff --git a/lib/DBIx/Class/Manual/Features.pod b/lib/DBIx/Class/Manual/Features.pod index 4a8d6f1..86eb584 100644 --- a/lib/DBIx/Class/Manual/Features.pod +++ b/lib/DBIx/Class/Manual/Features.pod @@ -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.) @@ -495,7 +495,7 @@ See: L, L and L -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 and L { -in => $inner_query }, }); -See L +See L =head2 Bare SQL w/ Placeholders @@ -661,5 +661,5 @@ Better: price => \['price + ?', [inc => $inc]], }); -See L +See L diff --git a/lib/DBIx/Class/ResultSource.pm b/lib/DBIx/Class/ResultSource.pm index 8b291e1..f9e8050 100644 --- a/lib/DBIx/Class/ResultSource.pm +++ b/lib/DBIx/Class/ResultSource.pm @@ -427,7 +427,7 @@ sub columns { my $columns_info = $source->columns_info; Like L 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. =cut diff --git a/lib/DBIx/Class/Storage/DBI.pm b/lib/DBIx/Class/Storage/DBI.pm index 1448bc3..153b287 100644 --- a/lib/DBIx/Class/Storage/DBI.pm +++ b/lib/DBIx/Class/Storage/DBI.pm @@ -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 +storage driver. Can be overridden by supplying an explicit L to L. For a list of available limit dialects see L.