diff --git a/docs/proxy/friend_operator_equality.md b/docs/proxy/friend_operator_equality.md index 7d233096..0e281abc 100644 --- a/docs/proxy/friend_operator_equality.md +++ b/docs/proxy/friend_operator_equality.md @@ -35,4 +35,4 @@ int main() { ## See Also -- [`has_value`](has_value.md) +- [`has_value`](operator_bool.md) diff --git a/docs/proxy/indirection.md b/docs/proxy/indirection.md index 42ff48bb..89926a3c 100644 --- a/docs/proxy/indirection.md +++ b/docs/proxy/indirection.md @@ -30,7 +30,7 @@ The behavior is undefined if `*this` does not contain a value. ## Notes -These operators do not check whether the `proxy` contains a value. To check whether the `proxy` contains a value, call [`has_value()`](has_value.md) or use [operator ==](friend_operator_equality.md). +These operators do not check whether the `proxy` contains a value. To check whether the `proxy` contains a value, call [`has_value()`](operator_bool.md) or use [operator ==](friend_operator_equality.md). ## Example