diff options
Diffstat (limited to 'toys/other')
-rw-r--r-- | toys/other/help.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/other/help.c b/toys/other/help.c index 686f862b..179dd4e7 100644 --- a/toys/other/help.c +++ b/toys/other/help.c @@ -42,7 +42,7 @@ void help_main(void) { int i; - // If called with no arguments as a builtin form the shell, show all builtins + // If called with no arguments as a builtin from the shell, show all builtins if (toys.rebound && !*toys.optargs && !toys.optflags) { for (i = 0; i < toys.toycount; i++) { if (!(toy_list[i].flags&(TOYFLAG_NOFORK|TOYFLAG_MAYFORK))) continue; |