From 134c1353ab9334efbab695824a20895a076455cc Mon Sep 17 00:00:00 2001 From: Rob Hague Date: Mon, 5 May 2025 20:34:36 +0200 Subject: [PATCH] Correct doc on ReadOnlySequence.IsSingleSegment (#11269) 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.