cref -- fix typo

1 · cpprefjp · Aug. 23, 2021, 7:50 a.m.
diff --git a/reference/functional/cref.md b/reference/functional/cref.md index 42318ec8b..37e37eaa0 100644 --- a/reference/functional/cref.md +++ b/reference/functional/cref.md @@ -10,7 +10,7 @@ namespace std { reference_wrapper<const T> cref(const T& t) noexcept; // (1) C++11 template <class T> - constepxr reference_wrapper<const T> cref(const T& t) noexcept; // (1) C++20 + constexpr reference_wrapper<const T> cref(const T& t) noexcept; // (1) C++20 template <clas...