From db405954cd8e9db03f2d46a85794444bed6fe7b7 Mon Sep 17 00:00:00 2001 From: krzysztofkortas <139075714+krzysztofkortas@users.noreply.github.com> Date: Sun, 20 Apr 2025 16:40:18 +0200 Subject: [PATCH] Remove `fmt/core.h` from docs (#4421) --- doc/api.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api.md b/doc/api.md index 1f1d6e33..252225b0 100644 --- a/doc/api.md +++ b/doc/api.md @@ -220,7 +220,7 @@ You can also write a formatter for a hierarchy of classes: ```c++ // demo.h: #include -#include +#include struct A { virtual ~A() {} @@ -403,7 +403,7 @@ All formatting is locale-independent by default. Use the `'L'` format specifier to insert the appropriate number separator characters from the locale: - #include + #include #include std::locale::global(std::locale("en_US.UTF-8"));