From ac86dfe11b2d3d6b5f7a3c9dbbb2ddc31e86f315 Mon Sep 17 00:00:00 2001 From: David Steinbrunner Date: Fri, 13 Sep 2013 07:33:07 -0400 Subject: [PATCH] typo fix --- lib/SQL/Translator/Parser/DBIx/Class.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/SQL/Translator/Parser/DBIx/Class.pm b/lib/SQL/Translator/Parser/DBIx/Class.pm index 527d5e511..d8f5344f3 100644 --- a/lib/SQL/Translator/Parser/DBIx/Class.pm +++ b/lib/SQL/Translator/Parser/DBIx/Class.pm @@ -237,7 +237,7 @@ sub parse { # Constraints are added only if applicable next unless $fk_constraint; - # Make sure we dont create the same foreign key constraint twice + # Make sure we don't create the same foreign key constraint twice my $key_test = join("\x00", sort @keys); next if $created_FK_rels{$rel_table}->{$key_test};