diff options
author | Samuel Tardieu <sam@rfc1149.net> | 2021-10-14 16:42:21 +0200 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2021-10-14 08:29:58 -0700 |
commit | ed8877bd687333657b82864d609f4db69743c165 (patch) | |
tree | d6e00933145396913481f84a9b48c2fc8fd0d4da /src/Text/Pandoc/Citeproc | |
parent | 49c4e1d014f90a10e7ed87a8fa5f1c0e9b8dbc8a (diff) | |
download | pandoc-ed8877bd687333657b82864d609f4db69743c165.tar.gz |
Remove redundant $
Found by hlint 3.3.1
Diffstat (limited to 'src/Text/Pandoc/Citeproc')
-rw-r--r-- | src/Text/Pandoc/Citeproc/BibTeX.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Citeproc/BibTeX.hs b/src/Text/Pandoc/Citeproc/BibTeX.hs index 5c7bdd9b5..9dcefb8d3 100644 --- a/src/Text/Pandoc/Citeproc/BibTeX.hs +++ b/src/Text/Pandoc/Citeproc/BibTeX.hs @@ -985,7 +985,7 @@ getTitle f = do lang <- gets localeLang let ils' = if f == "series" - then resolveKey lang $ ils + then resolveKey lang ils else ils let processTitle = if utc then unTitlecase (Just lang) else id return $ processTitle ils' |