docs: updated format string documentation

This commit is contained in:
antifallobst 2023-02-23 11:24:21 +01:00
parent b77e01a5d2
commit 547f74758e
1 changed files with 5 additions and 5 deletions

View File

@ -170,11 +170,11 @@ the formatter will have problems with that, because the `int32_t` representation
### Placeholders
#### `%s` - string
| **Argument Type** | `string_t` |
|-------------------------------|------------------|
| **Numeric Specifier Use** | None |
| **Numeric Specifier Default** | None |
| **Description** | Inserts a string |
| **Argument Type** | `string_t` |
|-------------------------------|--------------------------------------------------|
| **Numeric Specifier Use** | Specifies the maximum length the string can have |
| **Numeric Specifier Default** | String Length |
| **Description** | Inserts a string |
#### `%c` - char
| **Argument Type** | `char` |