๐ฉโ๐ป Join our community of thousands of amazing developers!
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>; ``` ## ๅ่ ...