Fix confusingly erroneous variable name
Dagfinn Ilmari Mannsåker [Mon, 7 Oct 2013 14:52:42 +0000 (15:52 +0100)]
lib/SQL/Translator/Schema/Constraint.pm

index 79c1e73..d5227b5 100644 (file)
@@ -196,9 +196,9 @@ Returns undef or an empty list if the constraint has no fields set.
 sub fields {
     my $self = shift;
     my $table = $self->table;
-    my @tables = map { $table->get_field($_) || $_ } @{$self->field_names(@_) || []};
-    return wantarray ? @tables
-        : @tables ? \@tables
+    my @fields = map { $table->get_field($_) || $_ } @{$self->field_names(@_) || []};
+    return wantarray ? @fields
+        : @fields ? \@fields
         : undef;
 }