mirror of
https://github.com/google/ormolu.git
synced 2024-12-13 20:23:12 +03:00
22 lines
345 B
Haskell
22 lines
345 B
Haskell
|
-- | Header.
|
||
|
|
||
|
{-# LANGUAGE FlexibleContexts #-}
|
||
|
{-# LANGUAGE TypeFamilies #-}
|
||
|
module My.Module
|
||
|
( -- * Something
|
||
|
foo
|
||
|
, bar
|
||
|
, -- * Another thing
|
||
|
(<?>)
|
||
|
, {- some other thing -} foo2 -- yet another
|
||
|
, foo3 -- third one
|
||
|
, baz
|
||
|
, bar2 -- a multiline comment
|
||
|
-- the second line
|
||
|
, bar3
|
||
|
, module Foo.Bar.Baz
|
||
|
)
|
||
|
where
|
||
|
|
||
|
-- Wow
|