Skip to content

Commit a1136ed

Browse files
Include file extension in the links for equality operators
1 parent cffbbd0 commit a1136ed

File tree

1 file changed

+1
-1
lines changed
  • docs/csharp/language-reference/builtin-types

1 file changed

+1
-1
lines changed

docs/csharp/language-reference/builtin-types/record.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ To implement value equality, the compiler synthesizes several methods, including
124124

125125
* An override of <xref:System.Object.GetHashCode?displayProperty=nameWithType>. This method can be declared explicitly.
126126

127-
* Overrides of [operator `==`](../operators/equality-operators#equality-operator-) and [operator `!=`](../operators/equality-operators#inequality-operator-). It's an error if the operators are declared explicitly.
127+
* Overrides of [operator `==`](../operators/equality-operators.md#equality-operator-) and [operator `!=`](../operators/equality-operators.md#inequality-operator-). It's an error if the operators are declared explicitly.
128128

129129
* If the record type is derived from a base record type, `protected override Type EqualityContract { get; };`. This property can be declared explicitly. For more information, see [Equality in inheritance hierarchies](#equality-in-inheritance-hierarchies).
130130

0 commit comments

Comments
 (0)