From 9545d255cece5038b013aa9b1d0bc4f71446cef5 Mon Sep 17 00:00:00 2001 From: Cyprian Klimaszewski Date: Thu, 22 Jan 2026 22:19:58 +0100 Subject: [PATCH] Codefix: is taken as HTML tag by doxygen. --- src/network/core/tcp_admin.h | 2 +- src/network/core/tcp_game.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/network/core/tcp_admin.h b/src/network/core/tcp_admin.h index 3b8b0b97a5..b7dd63f72c 100644 --- a/src/network/core/tcp_admin.h +++ b/src/network/core/tcp_admin.h @@ -492,7 +492,7 @@ protected: * uint32_t ID of the client sending the command. * uint8_t ID of the company (0..MAX_COMPANIES-1). * uint16_t ID of the command. - * Command specific buffer with encoded parameters of variable length. + * `` Command specific buffer with encoded parameters of variable length. * The content differs per command and can change without notification. * uint32_t Frame of execution. * @param p The packet that was just received. diff --git a/src/network/core/tcp_game.h b/src/network/core/tcp_game.h index c0e3652b43..7ce6646edb 100644 --- a/src/network/core/tcp_game.h +++ b/src/network/core/tcp_game.h @@ -325,7 +325,7 @@ protected: * Send a DoCommand to the Server: * uint8_t ID of the company (0..MAX_COMPANIES-1). * uint32_t ID of the command (see command.h). - * Command specific buffer with encoded parameters of variable length. + * `` Command specific buffer with encoded parameters of variable length. * The content differs per command and can change without notification. * uint8_t ID of the callback. * @param p The packet that was just received. @@ -336,7 +336,7 @@ protected: * Sends a DoCommand to the client: * uint8_t ID of the company (0..MAX_COMPANIES-1). * uint32_t ID of the command (see command.h). - * Command specific buffer with encoded parameters of variable length. + * `` Command specific buffer with encoded parameters of variable length. * The content differs per command and can change without notification. * uint8_t ID of the callback. * uint32_t Frame of execution.