From 634b1202b05caf4ffad89d7565ab3ef5e3781943 Mon Sep 17 00:00:00 2001 From: Alexey Ismagilov Date: Sun, 5 Nov 2023 16:05:55 +0300 Subject: [PATCH] FIX: typo in README.txt --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a89e96..11f588f 100644 --- a/README.md +++ b/README.md @@ -609,7 +609,7 @@ The grammar follows `std::from_chars`, but does not exactly duplicate it. For ex | 'g' or 'G' | general form (either fixed or scientific) | | | | | 'd' | decimal | -| 'i' | `std::from_chars` grammar with base == 0 | +| 'i' | `std::from_chars` grammar with base == 10 | | 'o' | octal (unsigned) | | 'u' | decimal (unsigned) | | 'x' or 'X' | hexadecimal (unsigned) |