Skip to content

Commit c792524

Browse files
Remove core.h from README (#4422)
1 parent c709138 commit c792524

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Try {fmt} in [Compiler Explorer](https://godbolt.org/z/8Mx1EW73v).
4747
hundred million integers to strings per
4848
second](http://www.zverovich.net/2020/06/13/fast-int-to-string-revisited.html)
4949
- Small code size both in terms of source code with the minimum
50-
configuration consisting of just three files, `core.h`, `format.h`
50+
configuration consisting of just three files, `base.h`, `format.h`
5151
and `format-inl.h`, and compiled code; see [Compile time and code
5252
bloat](#compile-time-and-code-bloat)
5353
- Reliability: the library has an extensive set of
@@ -74,7 +74,7 @@ See the [documentation](https://fmt.dev) for more details.
7474
**Print to stdout** ([run](https://godbolt.org/z/Tevcjh))
7575

7676
``` c++
77-
#include <fmt/core.h>
77+
#include <fmt/base.h>
7878

7979
int main() {
8080
fmt::print("Hello, world!\n");

0 commit comments

Comments
 (0)