Skip to content

Commit 1eb4484

Browse files
authored
Clean up superfluous relative links in <unordered_set> operators reference
1 parent c4f32db commit 1eb4484

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/standard-library/unordered-set-operators.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The `<unordered_set>` header provides the following operators:
1010

1111
## <a name="op_neq"></a> `operator!=`
1212

13-
Tests whether the [`unordered_set`](../standard-library/unordered-set-class.md) object on the left side of the operator is not equal to the `unordered_set` object on the right side.
13+
Tests whether the [`unordered_set`](unordered-set-class.md) object on the left side of the operator is not equal to the `unordered_set` object on the right side.
1414

1515
```cpp
1616
bool operator!=(const unordered_set <Key, Hash, Pred, Allocator>& left, const unordered_set <Key, Hash, Pred, Allocator>& right);
@@ -76,7 +76,7 @@ c2 != c3: true
7676

7777
## <a name="op_eq_eq"></a> `operator==`
7878

79-
Tests whether the [`unordered_set`](../standard-library/unordered-set-class.md) object on the left side of the operator is equal to the `unordered_set` object on the right side.
79+
Tests whether the [`unordered_set`](unordered-set-class.md) object on the left side of the operator is equal to the `unordered_set` object on the right side.
8080

8181
```cpp
8282
bool operator==(const unordered_set <Key, Hash, Pred, Allocator>& left, const unordered_set <Key, Hash, Pred, Allocator>& right);
@@ -142,7 +142,7 @@ c2 == c3: false
142142

143143
## <a name="op_neq_unordered_multiset"></a> `operator!=` (multiset)
144144

145-
Tests whether the [`unordered_multiset`](../standard-library/unordered-multiset-class.md) object on the left side of the operator is not equal to the `unordered_multiset` object on the right side.
145+
Tests whether the [`unordered_multiset`](unordered-multiset-class.md) object on the left side of the operator is not equal to the `unordered_multiset` object on the right side.
146146

147147
```cpp
148148
bool operator!=(const unordered_multiset <Key, Hash, Pred, Allocator>& left, const unordered_multiset <Key, Hash, Pred, Allocator>& right);
@@ -211,7 +211,7 @@ c2 != c3: true
211211

212212
## <a name="op_eq_eq_unordered_multiset"></a> `operator==` (multiset)
213213

214-
Tests whether the [`unordered_multiset`](../standard-library/unordered-multiset-class.md) object on the left side of the operator is equal to the `unordered_multiset` object on the right side.
214+
Tests whether the [`unordered_multiset`](unordered-multiset-class.md) object on the left side of the operator is equal to the `unordered_multiset` object on the right side.
215215

216216
```cpp
217217
bool operator==(const unordered_multiset <Key, Hash, Pred, Allocator>& left, const unordered_multiset <Key, Hash, Pred, Allocator>& right);

0 commit comments

Comments
 (0)