Fix invalid pod example syntax
Felix Antonius Wilhelm Ostmann [Sat, 20 Oct 2012 13:54:34 +0000 (15:54 +0200)]
lib/DBIx/Class/ResultSet.pm

index 574b2da..1a444d4 100644 (file)
@@ -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.