From 02f1fa1b5b1bbb3105528de1639ddf865b2294a2 Mon Sep 17 00:00:00 2001 From: Simon Hengel Date: Wed, 18 Jan 2012 09:58:39 +0100 Subject: [PATCH] yesod-static: Escape / in documentation of staticFilesList --- yesod-static/Yesod/Static.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yesod-static/Yesod/Static.hs b/yesod-static/Yesod/Static.hs index ceb4833f..571b4316 100644 --- a/yesod-static/Yesod/Static.hs +++ b/yesod-static/Yesod/Static.hs @@ -196,8 +196,8 @@ staticFiles dir = mkStaticFiles dir -- | Same as 'staticFiles', but takes an explicit list of files -- to create identifiers for. The files path given are relative -- to the static folder. For example, to create routes for the --- files @\"static/js/jquery.js\"@ and --- @\"static/css/normalize.css\"@, you would use: +-- files @\"static\/js\/jquery.js\"@ and +-- @\"static\/css\/normalize.css\"@, you would use: -- -- > staticFilesList \"static\" [\"js\/jquery.js\", \"css\/normalize.css\"] --