From 078ad437a5d38939e26633a09334b3ac273ad00b Mon Sep 17 00:00:00 2001 From: Lluciocc <114759545+Lluciocc@users.noreply.github.com> Date: Tue, 12 May 2026 18:33:08 +0200 Subject: [PATCH] Rename 'ptime' command to 'time' in help text --- src/userland/cli/help.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/userland/cli/help.c b/src/userland/cli/help.c index 83ee46b..8f651e3 100644 --- a/src/userland/cli/help.c +++ b/src/userland/cli/help.c @@ -38,7 +38,7 @@ int main(int argc, char **argv) { printf("clear - Clear the screen\n"); printf("exit - Exit the terminal\n"); printf("net - Network tools\n"); - printf("ptime - Measure command execution time\n"); + printf("time - Measure command execution time\n"); printf("\nHint: Use Ctrl+C to force quit any running application.\n"); return 0; }