From dabca9015381f5175cb1ca6f0302bb68896ed9ee Mon Sep 17 00:00:00 2001 From: Robert Hague Date: Mon, 5 May 2025 09:28:48 +0200 Subject: [PATCH] Correct doc on ReadOnlySequence.IsSingleSegment The current property value was presumably intended for IsEmpty --- xml/System.Buffers/ReadOnlySequence`1.xml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/xml/System.Buffers/ReadOnlySequence`1.xml b/xml/System.Buffers/ReadOnlySequence`1.xml index 61dfe4d2c09..c1ff2f5b926 100644 --- a/xml/System.Buffers/ReadOnlySequence`1.xml +++ b/xml/System.Buffers/ReadOnlySequence`1.xml @@ -580,7 +580,7 @@ Gets a value that indicates whether the is empty. - To be added. + if the read-only sequence is empty; otherwise, . To be added. @@ -615,8 +615,7 @@ Gets a value that indicates whether the contains a single segment. - - if the read-only sequence is empty; otherwise, . + if the read-only sequence consists of a single memory segment; otherwise, . To be added.