summaryrefslogtreecommitdiff
path: root/src/helper/jim.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/helper/jim.h')
-rw-r--r--src/helper/jim.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/helper/jim.h b/src/helper/jim.h
index e102eb7d..b7fae59c 100644
--- a/src/helper/jim.h
+++ b/src/helper/jim.h
@@ -992,7 +992,7 @@ typedef struct jim_getopt {
* return e;
* }
*
- * switch( n->value ){
+ * switch ( n->value ){
* case ALIVE:
* printf("Option ALIVE specified\n");
* break;
@@ -1112,7 +1112,7 @@ JIM_STATIC int JIM_API( Jim_GetOpt_Nvp)( Jim_GetOptInfo *goi, const Jim_Nvp *loo
* return e;
* }
*
- * switch( n->value ){
+ * switch ( n->value ){
* case OPT_SEX:
* // handle: --sex male|female|lots|needmore
* e = Jim_GetOpt_Nvp( &goi, &nvp_sex, &n );