commit da61643d84e3bf73d20eb48d590eb785859e1b30
parent 605a70a66aa6c34a0aee9929a54cfc9ed95575e8
Author: Byron Torres <b@torresjrjr.com>
Date: Tue, 20 Feb 2024 01:38:23 +0000
fmt: improve docs
Signed-off-by: Byron Torres <b@torresjrjr.com>
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/fmt/iter.ha b/fmt/iter.ha
@@ -14,15 +14,15 @@ export type field = (...formattable | *mods);
export type formattable = (...types::numeric | uintptr | str | rune | bool |
nullable *opaque | void);
-// Specifies for numerical arguments when to prepend a plus or minus sign or a
-// blank space.
+// Negative modifier. Specifies for numerical arguments when to prepend a plus
+// or minus sign or a blank space.
export type neg = enum {
NONE,
SPACE,
PLUS,
};
-// Specifies how to align an argument within a given width.
+// Alignment modifier. Specifies how to align an argument within a given width.
export type alignment = enum {
RIGHT,
CENTER,