Skip to content

Commit

Permalink
sort LANGUAGE pragmas, use my preferred module header format
Browse files Browse the repository at this point in the history
  • Loading branch information
ekmett committed Mar 29, 2024
1 parent 18519f8 commit 46b8c12
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions src/Control/Placeholder.hs
Original file line number Diff line number Diff line change
@@ -1,24 +1,30 @@
{-# LANGUAGE BlockArguments #-}
{-# LANGUAGE CPP #-}
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE PolyKinds #-}
{-# LANGUAGE ViewPatterns #-}
{-# LANGUAGE PatternSynonyms #-}
{-# LANGUAGE DeriveAnyClass #-}
{-# LANGUAGE ImplicitParams #-}
{-# LANGUAGE MagicHash #-}
{-# LANGUAGE PatternSynonyms #-}
{-# LANGUAGE PolyKinds #-}
{-# LANGUAGE RankNTypes #-}
{-# LANGUAGE ImplicitParams #-}
{-# LANGUAGE DeriveAnyClass #-}
{-# LANGUAGE Trustworthy #-}
{-# LANGUAGE BlockArguments #-}
{-# LANGUAGE CPP #-}
{-# LANGUAGE ViewPatterns #-}

-- |
-- Copyright : (c) Edward Kmett 2024
-- License : BSD-2-Clause OR Apache-2.0
-- Maintainer : Edward Kmett <[email protected]>
-- Stability : experimental
-- Portability: non-portable
--
-- Various functions to indicate unfinished or generally unimplemented code

#if __GLASGOW_HASKELL__ >= 980
#define WARNING_IN_XTODO WARNING in "x-todo"
#else
#define WARNING_IN_XTODO WARNING
#endif

{- | The 'Control.Placeholder' module implements various functions to indicate
unfinished or generally unimplemented code
-}
module Control.Placeholder
(
-- * Combinators
Expand Down

0 comments on commit 46b8c12

Please sign in to comment.