]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Spelling in code comments patch: 'defintions' -> 'definitions'; patch by Vlad Dascalu...
authorvladd%bugzilla.org <>
Mon, 19 Jun 2006 21:57:14 +0000 (21:57 +0000)
committervladd%bugzilla.org <>
Mon, 19 Jun 2006 21:57:14 +0000 (21:57 +0000)
Bugzilla/DB/Schema.pm
Bugzilla/DB/Schema/Mysql.pm

index 63b19578d045c27414d2225784d023a14c880571..175bb7d2b20e365e1bd56e7837ff29190b064c4d 100644 (file)
@@ -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
index 04ea92162cce8103cd0b535e995ede66bba95b0a..0069dcc7fa4327fa405f06d07f319985e7494b50 100644 (file)
@@ -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