From 4e32a6b95fdd09f79172e37dd16981e8250c8de0 Mon Sep 17 00:00:00 2001 From: Edo Date: Mon, 5 Feb 2024 11:20:55 +0100 Subject: [PATCH] maint: update some comments --- _utility.gsh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/_utility.gsh b/_utility.gsh index 5551fd0..fdc5bb2 100644 --- a/_utility.gsh +++ b/_utility.gsh @@ -45,7 +45,7 @@ /* IW4x MP has printConsole Built-in. __VA_OPT__ requires C++20 compliant preprocessor */ /* Do not use the + to concatenate strings, let the GSC VM do it for you */ -/* Other clients will have print avaiable */ +/* Other clients will have print available */ #if !defined(TOOL) #if defined(IW4MP) #define PRINT(format, ...) printConsole( format __VA_OPT__(,) __VA_ARGS__ ) @@ -54,7 +54,7 @@ #endif #endif -/* Use Cbuf. Should use the + to concatenate strings prior to using this */ +/* Use Cbuf. Should use the + to concatenate strings before using this */ #if defined(IW5) || defined(IW5x) || defined(T4) #define CBUF_ADD_TEXT(format) cmdExec( format ) #elif defined(IW6x) || defined(S1x) @@ -75,7 +75,7 @@ #if defined(IW4MP) #define NOCLIP(ent) ent noclip() -#else /* All clients should have it. But require the following */ +#else /* All clients should have it but require the following */ #define NOCLIP(ent) \ setDvar( "sv_cheats", 1 ); \ ent noclip(); \ @@ -84,7 +84,7 @@ #if defined(IW4MP) #define UFO(ent) ent ufo() -#else /* All clients should have it. But require the following */ +#else /* All clients should have it but require the following */ #define UFO(ent) \ setDvar( "sv_cheats", 1 ); \ ent ufo(); \