Index: pathauto.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/pathauto.inc,v
retrieving revision 1.37
diff -u -p -r1.37 pathauto.inc
--- pathauto.inc	16 May 2008 16:43:09 -0000	1.37
+++ pathauto.inc	20 May 2008 15:38:42 -0000
@@ -45,15 +45,14 @@ define('PREG_CLASS_ALNUM',
 '\x{fdfc}-\x{fe6b}\x{feff}-\x{ff0f}\x{ff1a}-\x{ff20}\x{ff3b}-\x{ff40}\x{ff5b}-'.
 '\x{ff65}\x{ff70}\x{ff9e}\x{ff9f}\x{ffe0}-\x{fffd}');
 
-
 /**
- * Check to see if there is already an alias pointing to a different item
+ * Check to see if there is already an alias pointing to a different item.
  *
  * @param $alias
  *   A string alias (i.e. dst).
  * @param $src
  *   A string that is the internal path.
- * @param $lang
+ * @param $language
  *   A string indicating the path's language.
  */
 function _pathauto_alias_exists($alias, $src, $language = '') {
@@ -196,7 +195,7 @@ function pathauto_cleanstring($string, $
 }
 
 /**
- * Apply patterns to create an alias
+ * Apply patterns to create an alias.
  *
  * @param $module
  *   The name of your module (e.g., 'node')
@@ -216,7 +215,7 @@ function pathauto_cleanstring($string, $
  * @param $language
  *   A string specify the path's language.
  * @return
- *   The alias that was created
+ *   The alias that was created.
  */
 function pathauto_create_alias($module, $op, $placeholders, $src, $entity_id, $type = NULL, $language = '') {
   if (($op != 'bulkupdate') and variable_get('pathauto_verbose', FALSE) && user_access('notify of path changes')) {
@@ -426,7 +425,7 @@ function pathauto_get_placeholders($type
 /**
  * Cleans tokens so they are URL friendly
  *
- * @param $values
+ * @param $full
  *   An array of token values that need to be "cleaned" for use in the URL.
  */
 function pathauto_clean_token_values($full) {
Index: pathauto.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/pathauto.install,v
retrieving revision 1.11
diff -u -p -r1.11 pathauto.install
--- pathauto.install	10 May 2008 20:27:59 -0000	1.11
+++ pathauto.install	20 May 2008 15:38:42 -0000
@@ -2,7 +2,8 @@
 // $Id: pathauto.install,v 1.11 2008/05/10 20:27:59 freso Exp $
 
 /**
- * @file Provides install, updated, and uninstall functions for pathauto.
+ * @file
+ * Provides install, update, and uninstall functions for Pathauto.
  */
 
 /**
Index: pathauto.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/pathauto.module,v
retrieving revision 1.109
diff -u -p -r1.109 pathauto.module
--- pathauto.module	16 May 2008 20:18:07 -0000	1.109
+++ pathauto.module	20 May 2008 15:38:43 -0000
@@ -2,7 +2,7 @@
 // $Id: pathauto.module,v 1.109 2008/05/16 20:18:07 greggles Exp $
 
 /**
- * Implementation of hook_help
+ * Implementation of hook_help().
  */
 function pathauto_help($path, $arg) {
   switch ($path) {
@@ -26,14 +26,14 @@ function pathauto_help($path, $arg) {
 }
 
 /**
- * Implementation of hook_perm
+ * Implementation of hook_perm().
  */
 function pathauto_perm() {
   return array('administer pathauto', 'notify of path changes');
 }
 
-/*
- * Implementation of hook_menu
+/**
+ * Implementation of hook_menu().
  */
 function pathauto_menu() {
   $items['admin/build/path/pathauto'] = array(
Index: pathauto_node.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/pathauto_node.inc,v
retrieving revision 1.43
diff -u -p -r1.43 pathauto_node.inc
--- pathauto_node.inc	18 May 2008 22:09:29 -0000	1.43
+++ pathauto_node.inc	20 May 2008 15:38:43 -0000
@@ -1,8 +1,8 @@
 <?php
 // $Id: pathauto_node.inc,v 1.43 2008/05/18 22:09:29 greggles Exp $
 
-/*
- * Implementation of hook_pathauto()
+/**
+ * Implementation of hook_pathauto().
  */
 function node_pathauto($op) {
   switch ($op) {
Index: pathauto_user.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/pathauto_user.inc,v
retrieving revision 1.26
diff -u -p -r1.26 pathauto_user.inc
--- pathauto_user.inc	10 May 2008 20:27:59 -0000	1.26
+++ pathauto_user.inc	20 May 2008 15:38:43 -0000
@@ -2,7 +2,7 @@
 // $Id: pathauto_user.inc,v 1.26 2008/05/10 20:27:59 freso Exp $
 
 /**
- * Implementation of hook_pathauto() for user aliases
+ * Implementation of hook_pathauto() for user aliases.
  */
 function user_pathauto($op) {
   switch ($op) {
@@ -31,7 +31,7 @@ function user_pathauto($op) {
 }
 
 /**
- * Implementation of hook_pathauto() for blog aliases
+ * Implementation of hook_pathauto() for blog aliases.
  */
 function blog_pathauto($op) {
   switch ($op) {
@@ -56,7 +56,7 @@ function blog_pathauto($op) {
 }
 
 /**
- * Implementation of hook_pathauto() for user-tracker aliases
+ * Implementation of hook_pathauto() for user-tracker aliases.
  */
 function tracker_pathauto($op) {
   switch ($op) {
@@ -81,7 +81,7 @@ function tracker_pathauto($op) {
 }
 
 /**
- * Bulk generate aliases for all users without aliases
+ * Bulk generate aliases for all users without aliases.
  */
 function user_pathauto_bulkupdate() {
   $query = "SELECT uid, name, src, dst FROM {users} LEFT JOIN {url_alias} ON CONCAT('user/', CAST(uid AS CHAR)) = src WHERE uid > 0 AND src IS NULL";
@@ -102,9 +102,8 @@ function user_pathauto_bulkupdate() {
     'Bulk generation of users completed, @count aliases generated.'));
 }
 
-
 /**
- * Bulk generate aliases for all blogs without aliases
+ * Bulk generate aliases for all blogs without aliases.
  */
 function blog_pathauto_bulkupdate() {
   $query = "SELECT uid, name, src, dst FROM {users} LEFT JOIN {url_alias} ON CONCAT('blog/', CAST(uid AS CHAR)) = src WHERE uid > 0 AND src IS NULL";
@@ -126,7 +125,7 @@ function blog_pathauto_bulkupdate() {
 }
 
 /**
- * Bulk generate aliases for user trackers without aliases
+ * Bulk generate aliases for user trackers without aliases.
  */
 function tracker_pathauto_bulkupdate() {
   // We do the double CONCAT because Pgsql8.1 doesn't support more than three arguments to CONCAT
