diff --git a/parsers.cabal b/parsers.cabal
--- a/parsers.cabal
+++ b/parsers.cabal
@@ -1,6 +1,6 @@
 name:          parsers
 category:      Text, Parsing
-version:       0.8.1
+version:       0.8.2
 license:       BSD3
 cabal-version: >= 1.10
 license-file:  LICENSE
diff --git a/src/Text/Parser/Token/Style.hs b/src/Text/Parser/Token/Style.hs
--- a/src/Text/Parser/Token/Style.hs
+++ b/src/Text/Parser/Token/Style.hs
@@ -30,6 +30,7 @@
   -- ** Common Comment Styles
   , emptyCommentStyle
   , javaCommentStyle
+  , scalaCommentStyle
   , haskellCommentStyle
   , buildSomeSpaceParser
   -- * Identifier Styles
@@ -92,6 +93,10 @@
 -- | Use java-style comments
 javaCommentStyle :: CommentStyle
 javaCommentStyle = CommentStyle "/*" "*/" "//" False
+
+-- | Use scala-style comments
+scalaCommentStyle :: CommentStyle
+scalaCommentStyle = CommentStyle "/*" "*/" "//" True
 
 -- | Use haskell-style comments
 haskellCommentStyle :: CommentStyle
