From 5929f8b8898fbe7b5abe4b1e8fdefe1da5422cc6 Mon Sep 17 00:00:00 2001 From: Jaka Kranjc Date: Mon, 29 Jul 2024 18:29:39 +0200 Subject: [PATCH] scan.h: fixed Manual indexing example --- include/scn/scan.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/scn/scan.h b/include/scn/scan.h index 5f4da6af..cfdcd3fc 100644 --- a/include/scn/scan.h +++ b/include/scn/scan.h @@ -7337,7 +7337,7 @@ constexpr void check_regex_type_specs(const format_specs& specs, * * // Manual indexing * auto b = scn::scan("2 to 300", "{1} to {0}"); - * // b->values() == (3, 200) + * // b->values() == (300, 2) * * // INVALID: * // Automatic and manual indexing is mixed