From 6314133de76f2298c7cb602e9d1bfdacf0f5be7d Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 9 Jul 2025 17:56:38 +0800 Subject: [PATCH] Fix missing `class` keyword for template parameters in `` operators reference --- docs/standard-library/array-operators.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/standard-library/array-operators.md b/docs/standard-library/array-operators.md index 1e076cf550..64b0e538b9 100644 --- a/docs/standard-library/array-operators.md +++ b/docs/standard-library/array-operators.md @@ -13,7 +13,7 @@ The `` header includes these **array** non-member comparison template fun Array comparison, not equal. ```cpp -template +template bool operator!=( const array& left, const array& right); @@ -86,7 +86,7 @@ true Array comparison, less than. ```cpp -template +template bool operator<( const array& left, const array& right); @@ -159,7 +159,7 @@ true Array comparison, less than or equal. ```cpp -template +template bool operator<=( const array& left, const array& right); @@ -232,7 +232,7 @@ false Array comparison, equal. ```cpp -template +template bool operator==( const array& left, const array& right); @@ -305,7 +305,7 @@ false Array comparison, greater than. ```cpp -template +template bool operator>( const array& left, const array& right); @@ -378,7 +378,7 @@ true Array comparison, greater than or equal. ```cpp -template +template bool operator>=( const array& left, const array& right);