Skip to content

Commit

Permalink
fix usage documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
moribellamy committed Nov 17, 2023
1 parent 705b3c4 commit ce9c7bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include "lib.h"

static const char *const usages[] = {
"c90eth [options]",
"mousewallet [options]",
NULL,
};

Expand All @@ -22,7 +22,7 @@ int main(int argc, const char *argv[]) {
};
struct argparse argparse;
argparse_init(&argparse, options, usages, 0);
argparse_describe(&argparse, "\n Create Ethereum wallets.", "");
argparse_describe(&argparse, "\nCreate Ethereum wallets.", "");
argc = argparse_parse(&argparse, argc, argv);

if (argc != 0) {
Expand Down

0 comments on commit ce9c7bc

Please sign in to comment.