From: Matt S Trout Date: Mon, 27 Mar 2006 20:09:09 +0000 (+0000) Subject: Fix typo in from rs attr docs X-Git-Tag: v0.06001~25 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=abaf89a9a216642e0459e87e20228666e17d1bb6;p=dbsrgits%2FDBIx-Class.git Fix typo in from rs attr docs --- diff --git a/lib/DBIx/Class/ResultSet.pm b/lib/DBIx/Class/ResultSet.pm index 9792511..c012011 100644 --- a/lib/DBIx/Class/ResultSet.pm +++ b/lib/DBIx/Class/ResultSet.pm @@ -1472,7 +1472,7 @@ avoid using C unless you cannot achieve the desired result using C. In simple terms, C works as follows: [ - { => , -join-type => 'inner|left|right' } + { =>
, -join_type => 'inner|left|right' } [] # nested JOIN (optional) { => } ] @@ -1535,7 +1535,7 @@ with a father in the person table, we could explicitly use C: from => [ { child => 'person' }, [ - { father => 'person', -join-type => 'inner' }, + { father => 'person', -join_type => 'inner' }, { 'father.id' => 'child.father_id' } ], ]