diff --git a/doc/index.md b/doc/index.md index 5db6a0ce..61551671 100644 --- a/doc/index.md +++ b/doc/index.md @@ -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