diff options
author | vladd%bugzilla.org <> | 2006-06-19 23:56:56 +0200 |
---|---|---|
committer | vladd%bugzilla.org <> | 2006-06-19 23:56:56 +0200 |
commit | a59a0ea7da07c31cee76c624b7fd438b9c9c2b97 (patch) | |
tree | 7560db578f4d0512d141a2388c8786147c960cce /Bugzilla | |
parent | c9138712c69e40c36f8961f20d2713d497c48875 (diff) | |
download | bugzilla-a59a0ea7da07c31cee76c624b7fd438b9c9c2b97.tar.gz bugzilla-a59a0ea7da07c31cee76c624b7fd438b9c9c2b97.tar.xz |
Spelling in code comments patch: 'defintions' -> 'definitions'; patch by Vlad Dascalu <vladd@bugzilla.org>.
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/DB/Schema.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm index f02f2d1af..54c414527 100644 --- a/Bugzilla/DB/Schema.pm +++ b/Bugzilla/DB/Schema.pm @@ -1160,7 +1160,7 @@ sub _adjust_schema { # Loop over each table in the abstract database schema. foreach my $table (keys %{ $self->{schema} }) { my %fields = (@{ $self->{schema}{$table}{FIELDS} }); - # Loop over the field defintions in each table. + # Loop over the field definitions in each table. foreach my $field_def (values %fields) { # If the field type is an abstract data type defined in the # $db_specific hash, replace it with the DBMS-specific data type |