From 7032b96428b4e3ad3ed94f4d0dcc022c0513dfbe Mon Sep 17 00:00:00 2001 From: Xulei Liu Date: Thu, 6 Aug 2026 18:05:21 +0200 Subject: [PATCH] Update equality-operators.md --- docs/csharp/language-reference/operators/equality-operators.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/csharp/language-reference/operators/equality-operators.md b/docs/csharp/language-reference/operators/equality-operators.md index 9f3112fe906a8..4d681cffce023 100644 --- a/docs/csharp/language-reference/operators/equality-operators.md +++ b/docs/csharp/language-reference/operators/equality-operators.md @@ -57,7 +57,7 @@ As the example shows, user-defined reference types support the `==` operator by :::code language="csharp" source="snippets/shared/EqualityOperators.cs" id="RecordTypesEquality"::: -As the preceding example shows, for reference-type members their reference values are compared, not the referenced instances. +As the preceding example shows, the equality of reference-type members is compared using their specific equality implementations. ### String equality