Browse Source

update doc

Laytan Laats 1 year ago
parent
commit
d47b0eeee7
1 changed files with 2 additions and 2 deletions
  1. 2 2
      core/fmt/doc.odin

+ 2 - 2
core/fmt/doc.odin

@@ -35,8 +35,8 @@ Floating-point, complex numbers, and quaternions:
 	%F    synonym for %f
 	%F    synonym for %f
 	%h    hexadecimal (lower-case) representation with 0h prefix (0h01234abcd)
 	%h    hexadecimal (lower-case) representation with 0h prefix (0h01234abcd)
 	%H    hexadecimal (upper-case) representation with 0H prefix (0h01234ABCD)
 	%H    hexadecimal (upper-case) representation with 0H prefix (0h01234ABCD)
-	%m    number of bytes in the best unit of measurement, e.g. 123.45mb
-	%M    number of bytes in the best unit of measurement, e.g. 123.45MB
+	%m    number of bytes in the best unit of measurement, e.g. 123.45mib
+	%M    number of bytes in the best unit of measurement, e.g. 123.45MiB
 String and slice of bytes
 String and slice of bytes
 	%s    the uninterpreted bytes of the string or slice
 	%s    the uninterpreted bytes of the string or slice
 	%q    a double-quoted string safely escaped with Odin syntax
 	%q    a double-quoted string safely escaped with Odin syntax