| ... | ... | @@ -77,7 +77,7 @@ fn peekIsAlign(comptime fmt: []const u8) bool { |
| 77 | 77 | /// - `b`: output integer value in binary notation |
| 78 | 78 | /// - `o`: output integer value in octal notation |
| 79 | 79 | /// - `c`: output integer as an ASCII character. Integer type must have 8 bits at max. |
| 80 | | /// - `u`: output integer as an UTF-8 sequence. Integer type must have 32 bits at max. |
| 80 | /// - `u`: output integer as an UTF-8 sequence. Integer type must have 21 bits at max. |
| 81 | 81 | /// - `*`: output the address of the value instead of the value itself. |
| 82 | 82 | /// |
| 83 | 83 | /// If a formatted user type contains a function of the type |