Index: docs/developer/hooks/core.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/docs/developer/hooks/core.php,v
retrieving revision 1.59
diff -u -r1.59 core.php
--- docs/developer/hooks/core.php	21 Oct 2005 16:50:24 -0000	1.59
+++ docs/developer/hooks/core.php	26 Oct 2005 07:38:48 -0000
@@ -84,17 +84,17 @@
  * This hook allows modules to take action whenever changes are made to
  * comments.
  *
+ * @param comment
+ *   The comment on which the action is being performed.
  * @param $op
  *   What type of action is being performed. Possible values:
  *   - "insert"
  *   - "moderate"
  *   - "update"
- * @param comment
- *   The comment on which the action is being performed.
  * @return
  *   None.
  */
-function hook_comment($op, $comment) {
+function hook_comment($comment, $op) {
   if ($op == 'insert' || $op == 'update') {
     $nid = $comment['nid'];
   }

