From: David Steinbrunner <dsteinbrunner@pobox.com>
Date: Fri, 13 Sep 2013 11:39:31 +0000 (-0400)
Subject: typo fix
X-Git-Tag: v0.011017~17^2~15
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5db972d2f2c69f7af9bd1775725bbdf15049aa72;p=dbsrgits%2FSQL-Translator.git

typo fix
---

diff --git a/lib/SQL/Translator/Producer/SQLite.pm b/lib/SQL/Translator/Producer/SQLite.pm
index 2cccce2..103c2de 100644
--- a/lib/SQL/Translator/Producer/SQLite.pm
+++ b/lib/SQL/Translator/Producer/SQLite.pm
@@ -464,7 +464,7 @@ sub batch_alter_table {
   my %temp_table_fields;
   do {
     local $table->{name} = $table_name . '_temp_alter';
-    # We only want the table - dont care about indexes on tmp table
+    # We only want the table - don't care about indexes on tmp table
     my ($table_sql) = create_table($table, {no_comments => 1, temporary_table => 1});
     push @sql,$table_sql;