From 25127fdb2af4165f1b1050f4380bb090f67d4900 Mon Sep 17 00:00:00 2001 From: Kathryn Baldauf Date: Thu, 4 Jun 2026 09:57:30 -0700 Subject: [PATCH] Fix type in memory size format for config docs (#1639) Signed-off-by: Kathryn Baldauf --- docs/container-system-config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/container-system-config.md b/docs/container-system-config.md index b1c81c06..547ae5ff 100644 --- a/docs/container-system-config.md +++ b/docs/container-system-config.md @@ -98,7 +98,7 @@ Quoted string with a numeric prefix and a binary unit suffix. Parsing is case-in |---------------------|--------------------------|------------------------| | `b` | bytes | `"1024b"` | | `k`, `kb`, `kib` | kibibytes (1024 bytes) | `"512k"`, `"512kb"` | -| `m`, `mb`, `mib` | mebibytes (1024 KiB) | `"2048mb"`, `"2g"` | +| `m`, `mb`, `mib` | mebibytes (1024 KiB) | `"2048mb"` | | `g`, `gb`, `gib` | gibibytes (1024 MiB) | `"4g"`, `"4gb"` | | `t`, `tb`, `tib` | tebibytes | `"1t"` | | `p`, `pb`, `pib` | pebibytes | `"1p"` |