From: vladd%bugzilla.org <> Date: Mon, 19 Jun 2006 21:57:14 +0000 (+0000) Subject: Spelling in code comments patch: 'defintions' -> 'definitions'; patch by Vlad Dascalu... X-Git-Tag: bugzilla-2.22.1~71 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d49f89ec49898ec07f9060ee352c9440edf94bd3;p=thirdparty%2Fbugzilla.git Spelling in code comments patch: 'defintions' -> 'definitions'; patch by Vlad Dascalu . --- diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm index 63b19578d0..175bb7d2b2 100644 --- a/Bugzilla/DB/Schema.pm +++ b/Bugzilla/DB/Schema.pm @@ -1155,7 +1155,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 diff --git a/Bugzilla/DB/Schema/Mysql.pm b/Bugzilla/DB/Schema/Mysql.pm index 04ea92162c..0069dcc7fa 100644 --- a/Bugzilla/DB/Schema/Mysql.pm +++ b/Bugzilla/DB/Schema/Mysql.pm @@ -245,7 +245,7 @@ sub column_info_to_column { if (defined $column_info->{COLUMN_DEF}) { # The defaults that MySQL inputs automatically are usually # something that would be considered "false" by perl, either - # a 0 or an empty string. (Except for ddatetime and decimal + # a 0 or an empty string. (Except for datetime and decimal # fields, which have their own special auto-defaults.) # # Here's how we handle this: If it exists in the schema