diff --git a/coder_tough_love.module b/coder_tough_love.module
index 72e3e2b..2b17d2f 100644
--- a/coder_tough_love.module
+++ b/coder_tough_love.module
@@ -76,12 +76,6 @@ function coder_tough_love_reviews() {
     array(
       '#source' => 'comment',
       '#type' => 'regex',
-      '#value' => '(@param|@return) (array|int|mixed|string|unknown_type)',
-      '#warning_callback' => '_coder_tough_love_doxygen_param_types_warning',
-    ),
-    array(
-      '#source' => 'comment',
-      '#type' => 'regex',
       '#value' => '(@param|@return) (?!array|int|mixed|string|unknown_type).*? .*?',
       '#warning_callback' => '_coder_tough_love_doxygen_param_description_warning',
     ),
@@ -273,13 +267,6 @@ function _coder_tough_love_doxygen_function_one_line_summary_warning() {
   );
 }
 
-function _coder_tough_love_doxygen_param_types_warning() {
-  return array(
-    '#warning' => t('@param and @return syntax should not indicate the data type.'),
-    '#link' => 'http://drupal.org/node/1354',
-  );
-}
-
 function _coder_tough_love_doxygen_param_description_warning() {
   return array(
     '#warning' => t('@param and @return descriptions begin indented on the next line.'),
