Skip to content

Commit f9165b4

Browse files
waywardmonkeyshappymonkey1
authored andcommitted
Fix typo in typename. containter_type -> container_type. (fmtlib#3844)
1 parent dd122ba commit f9165b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/fmt/format.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ template <typename OutputIt,
553553
FMT_ENABLE_IF(is_back_insert_iterator<OutputIt>::value&&
554554
is_contiguous<typename OutputIt::container>::value)>
555555
inline auto base_iterator(OutputIt it,
556-
typename OutputIt::containter_type::value_type*)
556+
typename OutputIt::container_type::value_type*)
557557
-> OutputIt {
558558
return it;
559559
}

0 commit comments

Comments
 (0)