From 1dd74c0c829d88f4b24c7f21fa5e0f50c64d2254 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Fri, 4 Sep 2026 12:54:13 -0700 Subject: [PATCH] Reorder performance comparison --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f6e0d9c3..e03a7164 100644 --- a/README.md +++ b/README.md @@ -182,8 +182,8 @@ Output on a modern terminal with Unicode support: # Performance -{fmt} can be tens of percent to 20–30 times faster than iostreams and -`sprintf`, especially for numeric formatting. It minimizes dynamic memory +{fmt} can be tens of percent to 20–30 times faster than `sprintf` and +iostreams, especially for numeric formatting. It minimizes dynamic memory allocations and can optionally [compile format strings]( https://fmt.dev/latest/api/#compile-api) into efficient formatting code.