From 98368ffaaae0436e80de3f00e3f878b061703cdd Mon Sep 17 00:00:00 2001 From: Jan Date: Fri, 15 May 2026 17:58:46 +0200 Subject: [PATCH] Fix formatting of help command descriptions --- src/userland/cli/help.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/userland/cli/help.c b/src/userland/cli/help.c index ac96e97..d7c09c4 100644 --- a/src/userland/cli/help.c +++ b/src/userland/cli/help.c @@ -37,10 +37,10 @@ int main(int argc, char **argv) { printf("clear - Clear the screen\n"); printf("exit - Exit the terminal\n"); printf("net - Network tools\n"); - printf("find - find files or folders\n"); - printf("rev - Reverse a string or file\n"); - printf("head - print lines from the top down\n"); - printf("tail - print lines from te bottom up\n"); + printf("find - find files or folders\n"); + printf("rev - Reverse a string or file\n"); + printf("head - print lines from the top down\n"); + printf("tail - print lines from the bottom up\n"); + printf("time - Measure command execution time\n"); printf("\nHint: Use Ctrl+C to force quit any running application.\n"); return 0; -}