Minor fix to the previous doc patch
Stephen Bennett [Thu, 20 Aug 2009 17:53:02 +0000 (17:53 +0000)]
lib/DBIx/Class.pm
lib/DBIx/Class/Manual/Cookbook.pod

index 90fe75f..1bc4c9a 100644 (file)
@@ -330,6 +330,8 @@ semifor: Marc Mims <marc@questright.com>
 
 solomon: Jared Johnson <jaredj@nmgi.com>
 
+spb: Stephen Bennett <stephen@freenode.net>
+
 sszabo: Stephan Szabo <sszabo@bigpanda.com>
 
 teejay : Aaron Trevena <teejay@cpan.org>
index 94805c2..b7a5329 100644 (file)
@@ -1548,9 +1548,9 @@ L<DBIx::Class::Schema/connect>:
  )
 
 In some cases, quoting will be required for all users of a schema. To enforce
-this, you can also overload the C<connect> method for your schema class:
+this, you can also overload the C<connection> method for your schema class:
 
- sub connect {
+ sub connection {
      my $self = shift;
      my $rv = $self->next::method( @_ );
      $rv->storage->sql_maker->quote_char([ qw/[ ]/ ]);