diff options
Diffstat (limited to 'Text')
-rw-r--r-- | Text/Pandoc/PDF.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Text/Pandoc/PDF.hs b/Text/Pandoc/PDF.hs index fa1e6dcf5..dc8e49df1 100644 --- a/Text/Pandoc/PDF.hs +++ b/Text/Pandoc/PDF.hs @@ -54,7 +54,7 @@ saveLaTeXAsPDF destinationPDFPath sourceDirRelative latex = do latexPathMaybe <- findExecutable "pdflatex" bibtexPathMaybe <- findExecutable "bibtex" let latexPath = case latexPathMaybe of - Nothing -> error $ "The 'pdflatex' command, which is needed to build an PDF file, was not found." + Nothing -> error $ "The 'pdflatex' command, which is needed to build a PDF file, was not found." Just x -> x let bibtexPath = case bibtexPathMaybe of Nothing -> error $ "The 'bibtex' command, which is needed to build an PDF file, was not found." |