From: Rafael Kitover Date: Tue, 27 Mar 2012 04:08:37 +0000 (-0400) Subject: Minor clarifications to POD X-Git-Tag: v0.08205~59 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class.git;a=commitdiff_plain;h=8ed69929cf1d623c4b07ab485cc95470d32b9734 Minor clarifications to POD --- diff --git a/lib/DBIx/Class/Relationship/Base.pm b/lib/DBIx/Class/Relationship/Base.pm index feabdc7..731ed23 100644 --- a/lib/DBIx/Class/Relationship/Base.pm +++ b/lib/DBIx/Class/Relationship/Base.pm @@ -428,7 +428,7 @@ $rel_name. $rs = $cd->related_resultset('tracks'); # has_many relationship $rs = $cd->tracks; -This is the recommended way to transverse through relationships, based +This is the recommended way to traverse through relationships, based on the L name given in the relationship definition. This will return either a L or a diff --git a/lib/DBIx/Class/Row.pm b/lib/DBIx/Class/Row.pm index 6d69cfd..4c83edc 100644 --- a/lib/DBIx/Class/Row.pm +++ b/lib/DBIx/Class/Row.pm @@ -301,9 +301,12 @@ sub new { A column accessor method is created for each column, which is used for getting/setting the value for that column. -The actual method name is based on the L -name given in the table definition. Like L, this will -not store the data until L or L is called on the row. +The actual method name is based on the +L name given during the +L L. Like L, this +will not store the data in the database until L or L +is called on the row. =head2 insert