From bed590d1bb5be4bf6ea0ea45a2c5b605eb16dc18 Mon Sep 17 00:00:00 2001 From: Martin Turon Date: Wed, 5 Jan 2022 13:35:40 -0800 Subject: [PATCH] Apply suggestions from code review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Ɓukasz Duda --- examples/shell/shell_common/cmd_server.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/shell/shell_common/cmd_server.cpp b/examples/shell/shell_common/cmd_server.cpp index 8f37bc9a385c7e..c327aa5693d9ec 100644 --- a/examples/shell/shell_common/cmd_server.cpp +++ b/examples/shell/shell_common/cmd_server.cpp @@ -192,9 +192,9 @@ void cmd_app_server_init() std::atexit(CmdAppServerAtExit); - // Register `config` subcommands with the local shell dispatcher. + // Register `server` subcommands with the local shell dispatcher. sShellServerSubcommands.RegisterCommands(sServerSubCommands, ArraySize(sServerSubCommands)); - // Register the root `config` command with the top-level shell. + // Register the root `server` command with the top-level shell. Engine::Root().RegisterCommands(&sServerComand, 1); }