From e0b58b7eee8a794110af496e19394cdc7085fe8a Mon Sep 17 00:00:00 2001 From: Ray Date: Fri, 1 Aug 2025 01:08:31 +0200 Subject: [PATCH] Update rexm.c --- examples/rexm.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/rexm.c b/examples/rexm.c index d40c2ce1c..ef22411d5 100644 --- a/examples/rexm.c +++ b/examples/rexm.c @@ -269,7 +269,7 @@ int main(int argc, char *argv[]) printf("\n////////////////////////////////////////////////////////////////////////////////////////////\n"); printf("// //\n"); - printf("// rem [raylib examples manager] - A simple command-line tool to manage raylib examples //\n"); + printf("// rexm [raylib examples manager] - A simple command-line tool to manage raylib examples //\n"); printf("// powered by raylib v5.6-dev //\n"); printf("// //\n"); printf("// Copyright (c) 2025 Ramon Santamaria (@raysan5) //\n"); @@ -277,20 +277,20 @@ int main(int argc, char *argv[]) printf("////////////////////////////////////////////////////////////////////////////////////////////\n\n"); printf("USAGE:\n\n"); - printf(" > rem help|create|add|rename|remove []\n"); + printf(" > rexm help|create|add|rename|remove []\n"); printf("\nOPTIONS:\n\n"); printf(" help : Provides command-line usage information\n"); printf(" create : Creates an empty example, from internal template\n"); printf(" add : Add existing example, category extracted from name\n"); - printf(" Supported categories: core, shapes, textures, text, models\n\n"); + printf(" Supported categories: core, shapes, textures, text, models\n"); printf(" rename : Rename an existing example\n"); printf(" remove : Remove an existing example\n\n"); printf("\nEXAMPLES:\n\n"); - printf(" > rem rename core_basic_window core_cool_window\n"); - printf(" Renames and updates example to \n\n"); - printf(" > rem add shapes_custom_stars\n"); + printf(" > rexm add shapes_custom_stars\n"); printf(" Add and updates new example provided \n\n"); + printf(" > rexm rename core_basic_window core_cool_window\n"); + printf(" Renames and updates example to \n\n"); } break; }