aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Zverovich <viz@meta.com>2023-12-29 15:54:50 -0800
committerVictor Zverovich <viz@meta.com>2023-12-29 15:54:50 -0800
commit63e4b93cfc4ea38221065ceadc18b5c434dd298c (patch)
treef97debf4375be67fd372ba64104d631e7a89826e
parentc64edcd325aefa5c66608884e25951c64caa261d (diff)
downloadfmtlib-63e4b93cfc4ea38221065ceadc18b5c434dd298c.tar.gz
Update changelog
-rw-r--r--ChangeLog.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/ChangeLog.md b/ChangeLog.md
index df0f7ddc..49b28cb7 100644
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -121,13 +121,13 @@
(https://github.com/fmtlib/fmt/issues/3625):
```c++
- auto s = fmt::styled(std::string("dangler"), fmt::emphasis::bold);
+ auto s = fmt::styled(std::string("dangle"), fmt::emphasis::bold);
fmt::print("{}\n", s); // compile error
```
Pass `fmt::styled(...)` as a parameter instead.
-- Added a null check when formatting C strings with the `s` specifier
+- Added a null check when formatting a C string with the `s` specifier
(https://github.com/fmtlib/fmt/issues/3706).
- Disallowed the `c` specifier for `bool`