Fix links

This commit is contained in:
Victor Zverovich 2024-05-29 17:29:41 -07:00
parent 5735048b2d
commit 9e07045f50

View File

@ -15,7 +15,7 @@ The format API is similar in spirit to the C `printf` family of function
but is safer, simpler and several times
[faster](https://vitaut.net/posts/2020/fast-int-to-string-revisited/)
than common standard library implementations.
The [format string syntax](syntax) is similar to the one used by
The [format string syntax](syntax.md) is similar to the one used by
[str.format](https://docs.python.org/3/library/stdtypes.html#str.format)
in Python:
@ -90,7 +90,7 @@ format(FMT_STRING("The answer is {:d}"), "forty-two");
```
reports a compile-time error on compilers that support relaxed `constexpr`.
See [Compile-Time Format String Checks](api#compile-time-format-string-checks)
See [Compile-Time Format String Checks](api.md#compile-time-format-string-checks)
for details.
The following code