From 0879504796dd053ae6bd68a583fff6d643d781ad Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Thu, 8 Feb 2024 21:24:55 +0700 Subject: [PATCH] Fix typo in typename. `containter_type` -> `container_type`. (#3844) --- include/fmt/format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/format.h b/include/fmt/format.h index b7169280..c3f260f8 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -553,7 +553,7 @@ template ::value&& is_contiguous::value)> inline auto base_iterator(OutputIt it, - typename OutputIt::containter_type::value_type*) + typename OutputIt::container_type::value_type*) -> OutputIt { return it; }