diff options
author | ivan <ivan> | 2002-03-26 13:04:31 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-03-26 13:04:31 +0000 |
commit | 6fd7d458e1fcd100546168ec3992182d628d89ce (patch) | |
tree | e21082b954a7d4587d5d971f2f8edc2f3a3f8af3 /bin | |
parent | a04483b3b0114792e7ae73f28ae0d2e6ebe77e98 (diff) |
error message typo
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/create-history-tables | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/create-history-tables b/bin/create-history-tables index 9ed641efd..d37d682d8 100755 --- a/bin/create-history-tables +++ b/bin/create-history-tables @@ -22,7 +22,7 @@ my @tables = scalar(@ARGV) foreach my $table ( @tables ) { warn "creating history table for $table\n"; my $tableobj = $schema->table($table) - or die "unknown talble $table (did you run dbdef-create?)\n"; + or die "unknown table $table (did you run dbdef-create?)\n"; my $h_tableobj = DBIx::DBSchema::Table->new( { name => "h_$table", primary_key => 'historynum', |