From 553468216636a0037f988a31f95cda40a0e7e3d0 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 13 May 2024 10:29:35 +0200 Subject: [PATCH] Update src/libutil/util.hh Co-authored-by: Robert Hensing --- src/libutil/util.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libutil/util.hh b/src/libutil/util.hh index 0c8c82bfd..6db59ef20 100644 --- a/src/libutil/util.hh +++ b/src/libutil/util.hh @@ -139,8 +139,8 @@ N string2IntWithUnitPrefix(std::string_view s) /** * Pretty-print a byte value, e.g. 12433615056 is rendered as `11.6 - * GiB`. If `align` is set, the number will be right-justified - * (e.g. `__11.6 GiB`). + * GiB`. If `align` is set, the number will be right-justified by + * padding with spaces on the left. */ std::string renderSize(uint64_t value, bool align = false);