Skip to content

Commit 8a4707b

Browse files
committed
[NFC][libc++] Fixes minor issues in the synopsis.
1 parent b1a267e commit 8a4707b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libcxx/include/chrono

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -922,18 +922,18 @@ strong_ordering operator<=>(const time_zone_link& x, const time_zone_link& y);
922922
} // chrono
923923
924924
namespace std {
925+
template<class Rep, class Period, class charT>
926+
struct formatter<chrono::duration<Rep, Period>, charT>; // C++20
925927
template<class Duration, class charT>
926928
struct formatter<chrono::sys_time<Duration>, charT>; // C++20
927929
template<class Duration, class charT>
928930
struct formatter<chrono::utc_time<Duration>, charT>; // C++20
929931
template<class Duration, class charT>
930932
struct formatter<chrono::tai_time<Duration>, charT>; // C++20
931933
template<class Duration, class charT>
932-
struct formatter<chrono::filetime<Duration>, charT>; // C++20
934+
struct formatter<chrono::file_time<Duration>, charT>; // C++20
933935
template<class Duration, class charT>
934936
struct formatter<chrono::local_time<Duration>, charT>; // C++20
935-
template<class Rep, class Period, class charT>
936-
struct formatter<chrono::duration<Rep, Period>, charT>; // C++20
937937
template<class charT> struct formatter<chrono::day, charT>; // C++20
938938
template<class charT> struct formatter<chrono::month, charT>; // C++20
939939
template<class charT> struct formatter<chrono::year, charT>; // C++20

0 commit comments

Comments
 (0)