diff --git a/doc/get-started.md b/doc/get-started.md index 976d966e..e61da882 100644 --- a/doc/get-started.md +++ b/doc/get-started.md @@ -28,8 +28,8 @@ There are three primary ways to use {fmt} with CMake: target_link_libraries( fmt::fmt) -* **Installed**: You can find and use an [installed](#install) version of {fmt} - in your `CMakeLists.txt` file as follows: +* **Installed**: You can find and use an [installed](#installation) version of + {fmt} in your `CMakeLists.txt` file as follows: find_package(fmt) target_link_libraries( fmt::fmt) diff --git a/doc/index.md b/doc/index.md index 501e5a7c..457857c4 100644 --- a/doc/index.md +++ b/doc/index.md @@ -24,7 +24,7 @@ hide: fmt::format prevent buffer overflow errors via automatic memory management.

-→ Learn more +→ Learn more
@@ -103,8 +103,8 @@ hide:

Type erasure is also used to prevent template bloat, resulting in compact per-call binary code. For example, a call to fmt::print with - a single argument is fewer than ten - x86-64 instructions, comparable to printf despite adding + a single argument is just a few + instructions, comparable to printf despite adding runtime safety, and much smaller than the equivalent iostreams code.