From 8b4a466716d3051545fa2ae08f2f88e7548b7cc2 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 31 Aug 2013 11:14:43 -0700 Subject: [PATCH] Correct a miselading comment. --- format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format.h b/format.h index ba72c07b..2aa6d3e9 100644 --- a/format.h +++ b/format.h @@ -163,7 +163,7 @@ extern const char DIGITS[]; void ReportUnknownType(char code, const char *type); -// Returns the number of decimal digits in n. Trailing zeros are not counted +// Returns the number of decimal digits in n. Leading zeros are not counted // except for n == 0 in which case CountDigits returns 1. inline unsigned CountDigits(uint64_t n) { unsigned count = 1;