Fix invalid pod example syntax
[dbsrgits/DBIx-Class.git] / 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.