|
17 | 17 | <Interfaces />
|
18 | 18 | <Docs>
|
19 | 19 | <typeparam name="T">The type of the items in the <see cref="T:System.Buffers.IBufferWriter`1" />.</typeparam>
|
20 |
| - <summary>Represents a <typeparamref name="T" /> output sink into which data can be written.</summary> |
| 20 | + <summary>Represents an output sink into which <typeparamref name="T" /> data can be written.</summary> |
21 | 21 | <remarks>To be added.</remarks>
|
22 | 22 | </Docs>
|
23 | 23 | <Members>
|
|
67 | 67 | <Parameter Name="sizeHint" Type="System.Int32" />
|
68 | 68 | </Parameters>
|
69 | 69 | <Docs>
|
70 |
| - <param name="sizeHint">The minimum length of the returned <see cref="T:System.Memory`1" />. If 0, some, non-empty buffer is returned. </param> |
| 70 | + <param name="sizeHint">The minimum length of the returned <see cref="T:System.Memory`1" />. If 0, a non-empty buffer is returned. </param> |
71 | 71 | <summary>Returns a <see cref="T:System.Memory`1" /> to write to that is at least the requested size (specified by <paramref name="sizeHint" />).</summary>
|
72 | 72 | <returns>A <see cref="T:System.Memory`1" /> of at least the size <paramref name="sizeHint" />. If <paramref name="sizeHint" /> is 0, returns a non-empty buffer.</returns>
|
73 | 73 | <remarks>
|
74 | 74 | <format type="text/markdown"><![CDATA[
|
75 | 75 |
|
76 | 76 | There is no guarantee that successive calls will return the same buffer or the same-sized buffer.
|
77 | 77 |
|
78 |
| -This must never return <xref:System.Span%601.Empty?displayProperty=nameWithType>, but it can throw <xref:System.OutOfMemoryException> if the requested buffer size is not available. |
| 78 | +This must never return <xref:System.Span%601.Empty?displayProperty=nameWithType>, but it can throw if the requested buffer size is not available. |
79 | 79 |
|
80 | 80 | You must request a new buffer after calling `Advance` to continue writing more data; you cannot write to a previously acquired buffer.
|
81 | 81 |
|
@@ -104,15 +104,15 @@ You must request a new buffer after calling `Advance` to continue writing more d
|
104 | 104 | <Parameter Name="sizeHint" Type="System.Int32" />
|
105 | 105 | </Parameters>
|
106 | 106 | <Docs>
|
107 |
| - <param name="sizeHint">The minimum length of the returned <see cref="T:System.Span`1" />. If 0, some, non-empty buffer is returned. </param> |
| 107 | + <param name="sizeHint">The minimum length of the returned <see cref="T:System.Span`1" />. If 0, a non-empty buffer is returned. </param> |
108 | 108 | <summary>Returns a <see cref="T:System.Span`1" /> to write to that is at least the requested size (specified by <paramref name="sizeHint" />).</summary>
|
109 | 109 | <returns>A <see cref="T:System.Span`1" /> of at least the size <paramref name="sizeHint" />. If <paramref name="sizeHint" /> is 0, returns a non-empty buffer.</returns>
|
110 | 110 | <remarks>
|
111 | 111 | <format type="text/markdown"><![CDATA[
|
112 | 112 |
|
113 | 113 | There is no guarantee that successive calls will return the same buffer or the same-sized buffer.
|
114 | 114 |
|
115 |
| -This method must never return <xref:System.Span%601.Empty?displayProperty=nameWithType>, but it can throw <xref:System.OutOfMemoryException> if the requested buffer size is not available. |
| 115 | +This method must never return <xref:System.Span%601.Empty?displayProperty=nameWithType>, but it can throw if the requested buffer size is not available. |
116 | 116 |
|
117 | 117 | You must request a new buffer after calling `Advance` to continue writing more data; you cannot write to a previously acquired buffer.
|
118 | 118 | ]]></format>
|
|
0 commit comments