From e93cb78992e402681d9747c9dfed0b4f3527bce2 Mon Sep 17 00:00:00 2001 From: Luigi Toscano Date: Thu, 21 Sep 2017 21:15:37 +0200 Subject: [PATCH] Fix string: no exclamation mark, add article Exclamation marks should not be used according the guidelines. --- generators/markdown/converter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generators/markdown/converter.cpp b/generators/markdown/converter.cpp index 7222b3331..81157bd21 100644 --- a/generators/markdown/converter.cpp +++ b/generators/markdown/converter.cpp @@ -57,7 +57,7 @@ QTextDocument* Converter::convert( const QString &fileName ) MMIOT *markdownHandle = mkd_in( markdownFile, 0 ); if ( !mkd_compile( markdownHandle, MKD_FENCEDCODE | MKD_GITHUBTAGS | MKD_AUTOLINK ) ) { - emit error( i18n( "Failed to compile markdown document!" ), -1 ); + emit error( i18n( "Failed to compile the Markdown document." ), -1 ); return 0; }