From: Felix Antonius Wilhelm Ostmann Date: Sat, 20 Oct 2012 13:54:34 +0000 (+0200) Subject: Fix invalid pod example syntax X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=880970ca6160a1ed0a98348655ca83005f3374dc;p=dbsrgits%2FDBIx-Class-Historic.git Fix invalid pod example syntax --- diff --git a/lib/DBIx/Class/ResultSet.pm b/lib/DBIx/Class/ResultSet.pm index 574b2da..1a444d4 100644 --- a/lib/DBIx/Class/ResultSet.pm +++ b/lib/DBIx/Class/ResultSet.pm @@ -4293,7 +4293,7 @@ attribute, this setting is ignored and an appropriate warning is issued. Adds to the WHERE clause. # only return rows WHERE deleted IS NULL for all searches - __PACKAGE__->resultset_attributes({ where => { deleted => undef } }); ) + __PACKAGE__->resultset_attributes({ where => { deleted => undef } }); Can be overridden by passing C<< { where => undef } >> as an attribute to a resultset.