From: Rafael Kitover <rkitover@cpan.org>
Date: Tue, 23 Jun 2009 16:36:22 +0000 (+0000)
Subject: add missing ' to doc
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=227b56c831e0e7b254bcd63fd91b2fb8bb0836fc;p=dbsrgits%2FDBIx-Class-Historic.git

add missing ' to doc
---

diff --git a/lib/DBIx/Class/ResultSet.pm b/lib/DBIx/Class/ResultSet.pm
index f0a5790..117563d 100644
--- a/lib/DBIx/Class/ResultSet.pm
+++ b/lib/DBIx/Class/ResultSet.pm
@@ -2186,7 +2186,7 @@ sub create {
 =back
 
   $cd->cd_to_producer->find_or_create({ producer => $producer },
-                                      { key => 'primary });
+                                      { key => 'primary' });
 
 Tries to find a record based on its primary key or unique constraints; if none
 is found, creates one and returns that instead.