diff options
Diffstat (limited to 'trypandoc/trypandoc.hs')
-rw-r--r-- | trypandoc/trypandoc.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trypandoc/trypandoc.hs b/trypandoc/trypandoc.hs index a4c21e1f6..f451b3063 100644 --- a/trypandoc/trypandoc.hs +++ b/trypandoc/trypandoc.hs @@ -25,7 +25,7 @@ main = run app app :: Application app req respond = do let query = queryToQueryText $ queryString req - let getParam x = maybe (error $ T.unpack x ++ " paramater not set") + let getParam x = maybe (error $ T.unpack x ++ " parameter not set") return $ lookup x query text <- getParam "text" >>= checkLength . fromMaybe T.empty fromFormat <- fromMaybe "" <$> getParam "from" |