From: Peter Rabbitson Date: Fri, 23 Jan 2009 12:45:43 +0000 (+0000) Subject: more typo patches by dandv X-Git-Tag: v0.08240~176 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=32f965489a8c538b4df0ef7ba6728c0152b7370c;p=dbsrgits%2FDBIx-Class.git more typo patches by dandv --- diff --git a/lib/DBIx/Class/ResultSet.pm b/lib/DBIx/Class/ResultSet.pm index 4e8467e..472de94 100644 --- a/lib/DBIx/Class/ResultSet.pm +++ b/lib/DBIx/Class/ResultSet.pm @@ -1506,7 +1506,7 @@ sub populate { =head2 _normalize_populate_args ($args) -Private method used by L to normalize it's incoming arguments. Factored +Private method used by L to normalize its incoming arguments. Factored out in case you want to subclass and accept new argument structures to the L method. @@ -1725,7 +1725,7 @@ sub _remove_alias { $cd->cd_to_producer->find_or_new({ producer => $producer }, { key => 'primary }); -Find an existing record from this resultset, based on it's primary +Find an existing record from this resultset, based on its primary key, or a unique constraint. If none exists, instantiate a new result object and return it. The object will not be saved into your storage until you call L on it. @@ -1771,7 +1771,7 @@ To create one row for this resultset, pass a hashref of key/value pairs representing the columns of the table and the values you wish to store. If the appropriate relationships are set up, foreign key fields can also be passed an object representing the foreign row, and the -value will be set to it's primary key. +value will be set to its primary key. To create related objects, pass a hashref for the value if the related item is a foreign key relationship (L),