From d5c3a44041e3c75422f0d2539cd90a81e8a2933a Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Wed, 9 Sep 2020 15:25:48 -0700 Subject: [PATCH] Add extra line after code fence. --- code/compiler/13/error.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/compiler/13/error.cpp b/code/compiler/13/error.cpp index d3cb850..b26c7e7 100644 --- a/code/compiler/13/error.cpp +++ b/code/compiler/13/error.cpp @@ -12,7 +12,7 @@ void type_error::pretty_print(std::ostream& to, parse_driver& drv) { to << "occuring on line " << loc->begin.line << ":" << std::endl; to << std::endl << "```" << std::endl; drv.print_highlighted_location(to, *loc); - to << "```" << std::endl; + to << "```" << std::endl << std::endl; } }