diff --git a/xml/System.Threading.Channels/ChannelWriter`1.xml b/xml/System.Threading.Channels/ChannelWriter`1.xml
index 5b1b9c9c3cc..1f8f9ccb287 100644
--- a/xml/System.Threading.Channels/ChannelWriter`1.xml
+++ b/xml/System.Threading.Channels/ChannelWriter`1.xml
@@ -196,9 +196,14 @@
A used to cancel the wait operation.
Returns a that will complete when space is available to write an item.
- A that will complete with a result when space is available to write an item
- or with a result when no further writing will be permitted.
- To be added.
+
+ A that will complete with a result when space is available to write an item
+ or with a result when no further writing will be permitted.
+ If the channel was completed with an exception, this task will also complete with an exception.
+
+ The channel has already been marked as complete, including an inner exception.
+ If the channel was already closed, this method does not return . Whether it returns or throws an exception
+ depends on whether an exception was provided in the call to complete it or not.
@@ -236,6 +241,7 @@
A used to cancel the write operation.
Asynchronously writes an item to the channel.
A that represents the asynchronous write operation.
+ The channel has already been marked as complete.
To be added.