1
0
mirror of https://github.com/OpenTTD/OpenTTD synced 2026-01-27 06:04:25 +01:00

Codefix: <var> is taken as HTML tag by doxygen.

This commit is contained in:
Cyprian Klimaszewski
2026-01-22 22:19:58 +01:00
committed by rubidium42
parent d18cf47c10
commit 9545d255ce
2 changed files with 3 additions and 3 deletions

View File

@@ -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.
* <var> Command specific buffer with encoded parameters of variable length.
* `<var>` 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.

View File

@@ -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).
* <var> Command specific buffer with encoded parameters of variable length.
* `<var>` 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).
* <var> Command specific buffer with encoded parameters of variable length.
* `<var>` 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.