From c25ec6e68fe629843f8a7bfb1bf122c08e2dffd7 Mon Sep 17 00:00:00 2001 From: EndrII Date: Mon, 26 Apr 2021 11:54:40 +0300 Subject: [PATCH] ref #28 fix readme --- README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 98e17e4..aa0a40c 100644 --- a/README.md +++ b/README.md @@ -54,19 +54,19 @@ Create objects of the BigInt class, and do what you got to do! ``` cpp #include - if (!QuasarAppUtils::Params::parseParams(argc, argv)) { - QuasarAppUtils::Params::log("Warning message", QuasarAppUtils::Warning); +if (!QuasarAppUtils::Params::parseParams(argc, argv)) { + QuasarAppUtils::Params::log("Warning message", QuasarAppUtils::Warning); - Help::Charters help = { - { - "Main Section ", { - {"-argument1", "description of the argument1"}, - {"-argument2", "description of the argument2"}, - } + Help::Charters help = { + { + "Main Section ", { + {"-argument1", "description of the argument1"}, + {"-argument2", "description of the argument2"}, } - }; + } + }; - QuasarAppUtils::Help::print(help); - exit(0); - } + QuasarAppUtils::Help::print(help); + exit(0); +} ```