diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-06-25 15:52:30 +0200 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-06-25 15:52:30 +0200 |
commit | a85d8335767b8acad7de36a16be1c6ae4bca9aff (patch) | |
tree | e1114fa5839ead8733a981298ec2c8f803973ad8 /src/Text | |
parent | e7cd3cb4668b119b61eb69eed857b0254a614ad9 (diff) | |
download | pandoc-a85d8335767b8acad7de36a16be1c6ae4bca9aff.tar.gz |
Fixed log message for InvalidLang.
Diffstat (limited to 'src/Text')
-rw-r--r-- | src/Text/Pandoc/Logging.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Logging.hs b/src/Text/Pandoc/Logging.hs index ad0fcdd2d..e31fb1521 100644 --- a/src/Text/Pandoc/Logging.hs +++ b/src/Text/Pandoc/Logging.hs @@ -259,7 +259,7 @@ showLogMessage msg = "It is recommended that lang be specified for this format." InvalidLang s -> "Invalid 'lang' value '" ++ s ++ "'.\n" ++ - "Use ISO 8601 format like 'en-US'." + "Use an IETF language tag like 'en-US'." CouldNotHighlight m -> "Could not highlight code block:\n" ++ m MissingCharacter m -> |