Index: comment_alter_taxonomy.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/comment_alter_taxonomy/comment_alter_taxonomy.install,v
retrieving revision 1.1
diff -u -p -r1.1 comment_alter_taxonomy.install
--- comment_alter_taxonomy.install	17 Feb 2008 23:59:40 -0000	1.1
+++ comment_alter_taxonomy.install	13 Nov 2008 09:26:53 -0000
@@ -23,7 +23,7 @@ function comment_alter_taxonomy_install(
       db_query('CREATE INDEX {comment_alter_taxonomy}_nid_cid_idx ON {comment_alter_taxonomy} (nid, cid)');
       break;
   }
-  
+
   // Set weight of comment_alter_taxonomy module to be heavier than taxonomy module.
   db_query("UPDATE {system} SET weight = 1 WHERE name = 'comment_alter_taxonomy'");
 
@@ -36,7 +36,7 @@ function comment_alter_taxonomy_uninstal
   if (db_table_exists('comment_alter_taxonomy')) {
     db_query("DROP TABLE {comment_alter_taxonomy}");
   }
-  
+
   // Delete settings variables.
   variable_del('comment_alter_taxonomy_vocabularies');
 }
Index: comment_alter_taxonomy.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/comment_alter_taxonomy/comment_alter_taxonomy.module,v
retrieving revision 1.9
diff -u -p -r1.9 comment_alter_taxonomy.module
--- comment_alter_taxonomy.module	30 Sep 2008 11:18:11 -0000	1.9
+++ comment_alter_taxonomy.module	13 Nov 2008 09:26:53 -0000
@@ -342,7 +342,7 @@ function comment_alter_taxonomy_taxonomy
 }
 
 /**
- * Implementation of hook_project_issue_metadata()
+ * Implementation of hook_project_issue_metadata().
  *
  * Adds taxonomy terms to the data that will be used to create the
  * project issue metadata tables and which is used when creating
@@ -409,7 +409,7 @@ function comment_alter_taxonomy_project_
       // changes for that vocabulary.  Doing this now makes sure that the final
       // $metadata array will have the vocabularies ordered by weight and makes sure
       // that the vocabularies are displayed in the same order every time.
-      // Before this function returns these values in $metadata will be cheked and any
+      // Before this function returns these values in $metadata will be checked and any
       // that do not reflect term changes will be unset.
       foreach ($allowed as $vid => $vocabulary) {
         // For multiple select vocabularies, each term will be stored in $metadata
@@ -608,7 +608,7 @@ function comment_alter_taxonomy_get_term
 }
 
 /**
- * Implementation of hook_nodeapi()
+ * Implementation of hook_nodeapi().
  *
  * For this implementation of hook_nodeapi() to be effective, the taxonomy
  * module must have a weight lighter than the comment_alter_taxonomy module,
