Drop dangling semicolon of death

This commit is contained in:
Greg Hale 2017-04-05 18:06:08 -04:00
parent cb94e4d307
commit 21af56f632

View File

@ -396,7 +396,7 @@ performRequestsCT ct reqMeth reqs reqHost trigger = do
foreign import javascript safe "new DataView($3,$1,$2)"
js_dataView :: Int -> Int -> JSVal -> JSVal
foreign import javascript unsafe "JSON['parse']($1);"
foreign import javascript unsafe "JSON['parse']($1)"
js_jsonParse :: JSVal -> JSVal
rawDecode :: (FromJSON a) => T.Text -> Maybe a