forked from lthn/blockchain
added missing closing tag
This commit is contained in:
parent
bd05907dd8
commit
2872515117
2 changed files with 2 additions and 3 deletions
|
|
@ -300,7 +300,7 @@ int main(int argc, char* argv[])
|
|||
if (command_line::has_arg(vm, command_line::arg_generate_rpc_autodoc))
|
||||
{
|
||||
std::string path_to_generate = command_line::get_arg(vm, command_line::arg_generate_rpc_autodoc);
|
||||
std::string auto_doc_sufix = "<sub>Auto-doc built with: " PROJECT_VERSION_LONG "</sub";
|
||||
std::string auto_doc_sufix = "<sub>Auto-doc built with: " PROJECT_VERSION_LONG "</sub>";
|
||||
if (!generate_doc_as_md_files(path_to_generate, rpc_server, auto_doc_sufix))
|
||||
return 1;
|
||||
return 0;
|
||||
|
|
|
|||
|
|
@ -3294,8 +3294,7 @@ int main(int argc, char* argv[])
|
|||
tools::wallet_rpc_server wallet_rpc_server(std::shared_ptr<tools::wallet2>(new tools::wallet2()));
|
||||
std::string path_to_generate = command_line::get_arg(vm, command_line::arg_generate_rpc_autodoc);
|
||||
|
||||
std::string auto_doc_sufix = "<sub>Auto-doc built with: " PROJECT_VERSION_LONG "</sub";
|
||||
|
||||
std::string auto_doc_sufix = "<sub>Auto-doc built with: " PROJECT_VERSION_LONG "</sub>";
|
||||
if (!generate_doc_as_md_files(path_to_generate, wallet_rpc_server, auto_doc_sufix))
|
||||
return 1;
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue