typo fix
David Steinbrunner [Wed, 7 Aug 2013 12:00:28 +0000 (08:00 -0400)]
lib/DBIx/Class/Storage/DBI/AutoCast.pm

index b7f28a6..db9fb8b 100644 (file)
@@ -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;