Don't pass seconds as a double in examples

This commit is contained in:
Victor Zverovich
2024-06-15 09:26:49 -07:00
parent ea1187f4c8
commit 2a2048a785
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -2024,7 +2024,7 @@ constexpr auto make_format_args(T&... args)
*
* **Example**:
*
* fmt::print("Elapsed time: {s:.2f} seconds", fmt::arg("s", 1.23));
* fmt::print("The answer is {answer}.", fmt::arg("answer", 42));
*/
template <typename Char, typename T>
inline auto arg(const Char* name, const T& arg) -> detail::named_arg<Char, T> {