Update supported padding specifiers comment (include o[ctal])

This commit is contained in:
2025-07-15 10:52:09 +02:00
parent a4855c3b75
commit 87fd5d815a

View File

@@ -70,8 +70,8 @@ puts:
; %b Unsigned integer, printed as binary number
; %o Unsigned integer, printed as octal number
; %s String
; %N* Pad left, N chars (maximum 64). Supported *: d, i, u, x, X, b
; *0N* Pad left with zeroes, N chars (maximum 64). Supported *: d, i, u, x, X, b
; %N* Pad left, N chars (maximum 64). Supported specifiers: d, i, u, x, X, b, o
; *0N* Pad left with zeroes, N chars (maximum 64). Supported specifiers: d, i, u, x, X, b, o
; <!> Unsupported specifiers are printed as-is
; <!> For all specifiers (except %%) an argument is expected. Mismatch between arguments given and specifiers provided will lead to issues
;