summaryrefslogtreecommitdiffhomepage
path: root/public/tools/open/src/CommandLine.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-03-31 07:06:00 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-03-31 07:06:00 +0200
commit2bcba69b77946c54ab1ede311787520acd56460a (patch)
treef156c3fde3a67cf7f52d69d114152f004c181bc0 /public/tools/open/src/CommandLine.cc
parent7129862620caa0074265d2eca6f4f0e7aa098d22 (diff)
meta/repository: fix capitalization on my name 'El' instead of 'EL'.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'public/tools/open/src/CommandLine.cc')
-rw-r--r--public/tools/open/src/CommandLine.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/public/tools/open/src/CommandLine.cc b/public/tools/open/src/CommandLine.cc
index 32606ce2..7ba7b7f6 100644
--- a/public/tools/open/src/CommandLine.cc
+++ b/public/tools/open/src/CommandLine.cc
@@ -1,7 +1,7 @@
/*
* Created on Thu Oct 17 08:00:42 CEST 2024
*
- * Copyright (c) 2024-2025 Amlal EL Mahrouss
+ * Copyright (c) 2024-2025 Amlal El Mahrouss
*/
#include <user/SystemCalls.h>
@@ -23,9 +23,9 @@ SInt32 main(SInt32 argc, Char* argv[])
if (MmStrCmp(argv[i], OPEN_APP_HELP_FLAG) == 0)
{
PrintOut(nullptr, "open: open .app(s) directories.\n");
- PrintOut(nullptr, "open: © 2024-2025 Amlal EL Mahrouss, All rights reserved.\n");
+ PrintOut(nullptr, "open: © 2024-2025 Amlal El Mahrouss, All rights reserved.\n");
- PrintOut(nullptr, "open: %s: App is being taken as the input (opens a PEF/PE32+/ELF program depending on the CPU architecture).\n", OPEN_APP_APP_FLAG);
+ PrintOut(nullptr, "open: %s: Application is being taken as the input (opens a PEF/PE32+/ELF program depending on the CPU architecture).\n", OPEN_APP_APP_FLAG);
return EXIT_SUCCESS;
}