From: David Adam (zanchey) Date: Thu, 8 Sep 2011 15:05:00 +0000 (+0800) Subject: [PATCH] client - spell amount correctly in help text X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=76e30b38384df049b022aad5b1d580eb9fa7e3ad;hp=dd8536ef3eddac19e517e99479f7ec7c4c1faf1c;p=tpg%2Fopendispense2.git [PATCH] client - spell amount correctly in help text --- diff --git a/src/client/main.c b/src/client/main.c index bf04443..fd99534 100644 --- a/src/client/main.c +++ b/src/client/main.c @@ -137,13 +137,13 @@ void ShowUsage(void) ); if( giTextArgc == 0 || strcmp(gsTextArgs[0], "give") == 0 ) printf( - " dispense give \"\"\n" + " dispense give \"\"\n" " Give money to another user\n" ); if( giTextArgc == 0 || strcmp(gsTextArgs[0], "donate") == 0 ) printf( - " dispense donate \"\"\n" + " dispense donate \"\"\n" " Donate to the club\n" ); if( giTextArgc == 0 || strcmp(gsTextArgs[0], "iteminfo") == 0 ) @@ -162,9 +162,9 @@ void ShowUsage(void) printf( " dispense acct []\n" " Show user balances\n" - " dispense acct [+-] \"\"\n" + " dispense acct [+-] \"\"\n" " Alter a account value\n" - " dispense acct = \"\"\n" + " dispense acct = \"\"\n" " Set an account balance\n" ); if( giTextArgc == 0 || strcmp(gsTextArgs[0], "refund") == 0 ) @@ -1716,7 +1716,7 @@ int Dispense_AlterBalance(int Socket, const char *Username, int Ammount, const c // Sanity if( Ammount == 0 ) { - printf("An ammount would be nice\n"); + printf("An amount would be nice\n"); return RV_ARGUMENTS; }