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);