Index: coder_comment.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/coder/includes/Attic/coder_comment.inc,v
retrieving revision 1.1.4.11.2.4
diff -u -r1.1.4.11.2.4 coder_comment.inc
--- coder_comment.inc	14 Aug 2009 00:18:30 -0000	1.1.4.11.2.4
+++ coder_comment.inc	5 Dec 2010 00:53:49 -0000
@@ -68,9 +68,17 @@
     array(
       '#type' => 'regex',
       '#source' => 'comment',
-      '#value' => '\@see\s*\w+.*$',
-      '#not' => '^\@see\s+([\w\.\-\(\)\?\/:\&=]+,\s)*[\w\.\-\(\)\?\/:\&=]+?[\w\(\)\/]$',
-      '#warning' => '@see references should be separated by "," followed by a single space and with no trailing punctuation',
+      '#value' => '\@see\s+\w+.*$',
+      '#not' => '^\@see\s+.+(,\s\s+|,(?!(\s|$))|(?<!,)\s).+$',
+      '#warning' => '@see references should be separated by "," followed by a single space',
+      '#severity' => 'minor',
+    ),
+    array(
+      '#type' => 'regex',
+      '#source' => 'comment',
+      '#value' => '\@see\s+\w+.*$',
+      '#not' => '\w+(\/|\(\))?[\W]$',
+      '#warning' => '@see references should have no trailing punctuation',
       '#severity' => 'minor',
     ),
     array(

