Skip to content

Commit 39dcd74

Browse files
authored
Fix the remarks for the inequality operator (#8830)
There is a missing "not" in the remarks of the inequality operator - it says the objects "are equal" instead of "are not equal".
1 parent dba3e31 commit 39dcd74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xml/System/Span`1.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -942,7 +942,7 @@ Two <xref:System.Span%601> objects are equal if they have the same length and th
942942
<remarks>
943943
<format type="text/markdown"><![CDATA[
944944
945-
Two <xref:System.Span%601> objects are equal if they have different lengths or if the corresponding elements of `left` and `right` do not point to the same memory.
945+
Two <xref:System.Span%601> objects are not equal if they have different lengths or if the corresponding elements of `left` and `right` do not point to the same memory.
946946
947947
]]></format>
948948
</remarks>

0 commit comments

Comments
 (0)