From 547f74758e011068be03fd548f43217f08992002 Mon Sep 17 00:00:00 2001 From: antifallobst Date: Thu, 23 Feb 2023 11:24:21 +0100 Subject: [PATCH] docs: updated format string documentation --- .wiki/Kernel-documentation.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.wiki/Kernel-documentation.md b/.wiki/Kernel-documentation.md index 5cb1666..e8c49aa 100644 --- a/.wiki/Kernel-documentation.md +++ b/.wiki/Kernel-documentation.md @@ -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` |