diff --git a/docs/Modding/reference/respawn/clientcommands.md b/docs/Modding/reference/respawn/clientcommands.md index cf14f1b9..2e43e3d9 100644 --- a/docs/Modding/reference/respawn/clientcommands.md +++ b/docs/Modding/reference/respawn/clientcommands.md @@ -11,7 +11,7 @@ Client commands are how the clients communicate with the server. Mods can define AddClientCommandCallback("commandname", commandcallback) void CommandCalled(entity player, array args) { - print("commandname: was kalled with " + args); + print("commandname: was called with " + args); } ```