Merge pull request #302 from ismagilli/typo_in_readme

FIX: typo in README.txt
This commit is contained in:
Pranav 2023-11-05 07:59:32 -06:00 committed by GitHub
commit ef92a8523e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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) |