diff --git a/src/main/grammar/Aspect.flex b/src/main/grammar/Aspect.flex
index 671249c9a3a6c97ba3d764f5297f2604aa92dc1d..80a77cd34584028eb9bd93b7d2c24d5c0eb8a491 100644
--- a/src/main/grammar/Aspect.flex
+++ b/src/main/grammar/Aspect.flex
@@ -33,7 +33,7 @@ import com.intellij.psi.TokenType;
 WhiteSpace          = [ \t\n\r\f]
 
 // TODO what is /**/ in Java? Is this caputered here?
-SingleLineComment   = "//"  [^\n\r]* (\n | \r | \r\n)
+SingleLineComment   = "//"  [^\n\r]*
 FormalComment       = "/**" [^*]* [*]+([^*/][^*]*[*]+)*[/]
 MultiLineComment    = "/*"  [^*]+ [*]+([^*/][^*]*[*]+)*[/]