Skip to content

Commit

Permalink
Fix typo in typename. containter_type -> container_type. (fmtlib#…
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys authored Feb 8, 2024
1 parent 34f415b commit 0879504
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/fmt/format.h
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ template <typename OutputIt,
FMT_ENABLE_IF(is_back_insert_iterator<OutputIt>::value&&
is_contiguous<typename OutputIt::container>::value)>
inline auto base_iterator(OutputIt it,
typename OutputIt::containter_type::value_type*)
typename OutputIt::container_type::value_type*)
-> OutputIt {
return it;
}
Expand Down

0 comments on commit 0879504

Please sign in to comment.