Skip to content

Commit db40595

Browse files
Remove fmt/core.h from docs (#4421)
1 parent 0a917ee commit db40595

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ You can also write a formatter for a hierarchy of classes:
220220
```c++
221221
// demo.h:
222222
#include <type_traits>
223-
#include <fmt/core.h>
223+
#include <fmt/format.h>
224224
225225
struct A {
226226
virtual ~A() {}
@@ -403,7 +403,7 @@ All formatting is locale-independent by default. Use the `'L'` format
403403
specifier to insert the appropriate number separator characters from the
404404
locale:
405405
406-
#include <fmt/core.h>
406+
#include <fmt/format.h>
407407
#include <locale>
408408
409409
std::locale::global(std::locale("en_US.UTF-8"));

0 commit comments

Comments
 (0)