Skip to content
Snippets Groups Projects
Verified Commit 98198ea1 authored by Legy (Beini)'s avatar Legy (Beini)
Browse files

Reformat some code

parent 5e310168
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ module Prelude
traceShowId,
traceM,
traceShowM,
undefined
undefined,
)
where
......@@ -86,4 +86,4 @@ traceShowM = Trace.traceShowM
intercalate :: Monoid a => a -> [a] -> a
intercalate _ [] = mempty
intercalate _ [x] = x
intercalate inter (x:xs) = x <> inter <> intercalate inter xs
intercalate inter (x : xs) = x <> inter <> intercalate inter xs
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment