Skip to content

Commit

Permalink
add newlines for description
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Aug 19, 2022
1 parent 514eaf3 commit e83a70f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/util/gparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -541,11 +541,10 @@ struct gparams::imp {
strm << "unknown module '" << module_name << "'";
throw exception(std::move(strm).str());
}
out << "## Module " << module_name << "\n\n";
out << "\n## Module " << module_name << "\n\n";
char const * descr = nullptr;
if (get_module_descrs().find(module_name, descr)) {
out << "Description: " << descr;
}
if (get_module_descrs().find(module_name, descr))
out << "Description: " << descr << "\n";
out << "\n";
d->display_markdown(out);
}
Expand Down

0 comments on commit e83a70f

Please sign in to comment.