From: David Steinbrunner Date: Wed, 7 Aug 2013 12:00:28 +0000 (-0400) Subject: typo fix X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7933acda54155ff54b7dfae359890671da3139a3;p=dbsrgits%2FDBIx-Class-Historic.git typo fix --- diff --git a/lib/DBIx/Class/Storage/DBI/AutoCast.pm b/lib/DBIx/Class/Storage/DBI/AutoCast.pm index b7f28a6..db9fb8b 100644 --- a/lib/DBIx/Class/Storage/DBI/AutoCast.pm +++ b/lib/DBIx/Class/Storage/DBI/AutoCast.pm @@ -42,7 +42,7 @@ sub _prep_for_execute { my ($sql, $bind) = $self->next::method (@_); # If we're using ::NoBindVars, there are no binds by this point so this code -# gets skippeed. +# gets skipped. if ($self->auto_cast && @$bind) { my $new_sql; my @sql_part = split /\?/, $sql, scalar @$bind + 1;