Cosmetic.

This commit is contained in:
Justin Hsu 2016-02-18 23:43:24 -05:00
parent b560adefbc
commit b1434d6e0c
1 changed files with 1 additions and 4 deletions

View File

@ -24,12 +24,10 @@ import qualified Bibtex as B
import qualified Text.Pandoc as Pandoc
import qualified Text.Parsec as Parsec
--------------------------------------------------------------------------------
newtype BibEntry = BibEntry B.Item
deriving (Typeable)
--------------------------------------------------------------------------------
instance Binary BibEntry where
put (BibEntry t) = do
@ -39,7 +37,6 @@ instance Binary BibEntry where
get = BibEntry <$> (B.Item <$> get <*> get <*> get)
--------------------------------------------------------------------------------
bibEntryContext :: Context BibEntry
bibEntryContext = Context $ \key _ item ->