same_as -- same_as : fix typo

1 ยท cpprefjp ยท July 17, 2022, 8:44 a.m.
diff --git a/reference/concepts/same_as.md b/reference/concepts/same_as.md index 8e7e756ad..ed7053b3d 100644 --- a/reference/concepts/same_as.md +++ b/reference/concepts/same_as.md @@ -30,7 +30,7 @@ concept same-as-impl = is_same_v<T, U>; ```cpp template <class T, class U> -concept C = same-as-impl<T, U> && same-as-impl<U, T>; +concept same_as = same-as-impl<T, U> && same-as-impl<U, T>; ``` ## ๅ‚™่€ƒ ...