diff options
| author | John MacFarlane <[email protected]> | 2025-06-16 17:56:59 -0700 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2025-06-16 17:56:59 -0700 |
| commit | c6e418268f9691e008626f4dbf2a85a646be7a39 (patch) | |
| tree | 27039200b6403ad937f850e1f9417dcce856b9c8 /src | |
| parent | 94a9643ef9f80e4b66d293c761a2193703b99581 (diff) | |
Fix compiler warning.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Text/Pandoc/Readers/DocBook.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/DocBook.hs b/src/Text/Pandoc/Readers/DocBook.hs index 12121d852..a73e46ce0 100644 --- a/src/Text/Pandoc/Readers/DocBook.hs +++ b/src/Text/Pandoc/Readers/DocBook.hs @@ -15,7 +15,7 @@ Conversion of DocBook XML to 'Pandoc' document. -} module Text.Pandoc.Readers.DocBook ( readDocBook ) where import Control.Monad (MonadPlus(mplus)) -import Control.Applicative ((<|>)) +import Control.Applicative () import Control.Monad.State.Strict ( MonadTrans(lift), StateT(runStateT), |
