From: David Steinbrunner Date: Fri, 13 Sep 2013 12:01:37 +0000 (-0400) Subject: more typo fixes X-Git-Tag: v0.011017~17^2~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=09e3a2a67d4773007707553a11b64ca72b58078a;p=dbsrgits%2FSQL-Translator.git more typo fixes --- diff --git a/lib/SQL/Translator/Producer/MySQL.pm b/lib/SQL/Translator/Producer/MySQL.pm index 268416e..6c06caa 100644 --- a/lib/SQL/Translator/Producer/MySQL.pm +++ b/lib/SQL/Translator/Producer/MySQL.pm @@ -129,7 +129,7 @@ my %translate = ( ); # -# Column types that do not support lenth attribute +# Column types that do not support length attribute # my @no_length_attr = qw/ date time timestamp datetime year @@ -213,7 +213,7 @@ sub preprocess_schema { # Normalize constraint names here. my $c_name = $c->name; - # Give the constraint a name if it doesn't have one, so it doens't feel + # Give the constraint a name if it doesn't have one, so it doesn't feel # left out $c_name = $table->name . '_fk' unless length $c_name; @@ -876,7 +876,7 @@ sub batch_alter_table { my ($table, $diff_hash, $options) = @_; # InnoDB has an issue with dropping and re-adding a FK constraint under the - # name in a single alter statment, see: http://bugs.mysql.com/bug.php?id=13741 + # name in a single alter statement, see: http://bugs.mysql.com/bug.php?id=13741 # # We have to work round this.