1
0
Fork 0
forked from lthn/blockchain

added missing closing tag

This commit is contained in:
cryptozoidberg 2025-03-31 16:14:46 +04:00
parent bd05907dd8
commit 2872515117
No known key found for this signature in database
GPG key ID: 2E10CC61CAC8F36D
2 changed files with 2 additions and 3 deletions

View file

@ -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;

View file

@ -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;