diff --git a/Text/Coffee.hs b/Text/Coffee.hs
--- a/Text/Coffee.hs
+++ b/Text/Coffee.hs
@@ -39,8 +39,8 @@
 import Text.Shakespeare
 import Text.Julius
 
--- | The Roy language compiles down to Javascript.
--- We do this once at compile time to avoid needing to do it during the request.
+-- | The Coffeescript language compiles down to Javascript.
+-- We do this compilation once at compile time to avoid needing to do it during the request.
 -- We call this a preConversion because other shakespeare modules like Lucius use Haskell to compile during the request rather than a system call.
 -- During the pre-conversion we first modify all Haskell insertions
 -- so that they will be ignored by the Coffeescript compiler (backticks).
diff --git a/Text/Roy.hs b/Text/Roy.hs
--- a/Text/Roy.hs
+++ b/Text/Roy.hs
@@ -45,8 +45,8 @@
 import Text.Julius
 
 -- | The Roy language compiles down to Javascript.
--- We do this once at compile time to avoid needing to do it during the request.
--- We call this a preConversion because other shakespeare modules like Lucius use Haskell to compile during the request rather than a system call.
+-- We do this compilation once at compile time to avoid needing to do it during the request.
+-- We call this a preConversion because other shakespeare modules like Lucius use Haskell to compile during the request instead rather than a system call.
 roySettings :: Q ShakespeareSettings
 roySettings = do
   jsettings <- javascriptSettings
@@ -56,6 +56,7 @@
     , preEscapeBegin = "`"
     , preEscapeEnd = "`"
     , preEscapeIgnoreBalanced = "'\"`"
+    , preEscapeIgnoreLine = "//"
     }
   }
 
diff --git a/shakespeare-js.cabal b/shakespeare-js.cabal
--- a/shakespeare-js.cabal
+++ b/shakespeare-js.cabal
@@ -1,5 +1,5 @@
 name:            shakespeare-js
-version:         1.0.0.2
+version:         1.0.0.3
 license:         MIT
 license-file:    LICENSE
 author:          Michael Snoyman <michael@snoyman.com>
