Skip to content

Commit 649b69a

Browse files
committed
unix/main: Improve help for -X options a bit.
1 parent 0e5e14f commit 649b69a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

unix/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ STATIC int usage(char **argv) {
293293
"-v : verbose (trace various operations); can be multiple\n"
294294
"-O[N] : apply bytecode optimizations of level N\n"
295295
"\n"
296-
"Implementation specific options:\n", argv[0]
296+
"Implementation specific options (-X):\n", argv[0]
297297
);
298298
int impl_opts_cnt = 0;
299299
printf(
@@ -303,7 +303,7 @@ STATIC int usage(char **argv) {
303303
impl_opts_cnt++;
304304
#if MICROPY_ENABLE_GC
305305
printf(
306-
" heapsize=<n> -- set the heap size for the GC (default %ld)\n"
306+
" heapsize=<n>[w][K|M] -- set the heap size for the GC (default %ld)\n"
307307
, heap_size);
308308
impl_opts_cnt++;
309309
#endif

0 commit comments

Comments
 (0)