Skip to content

Commit 63d4e50

Browse files
authored
Add missing <returns> to AppendAllBytesAsync (dotnet#10353)
Contributes to dotnet/runtime#105979 (comment)
1 parent 6403937 commit 63d4e50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

xml/System.IO/File.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@
295295
<para>Asynchronously appends the specified byte array to the end of the file at the given path.</para>
296296
<para>If the file doesn't exist, this method creates a new file. If the operation is canceled, the task will return in a canceled state.</para>
297297
</summary>
298-
<returns>To be added.</returns>
298+
<returns>A task that represents the asynchronous append operation.</returns>
299299
<remarks>To be added.</remarks>
300300
<exception cref="T:System.ArgumentNullException">
301301
<paramref name="path" /> or <paramref name="bytes" /> is <see langword="null" />.
@@ -346,7 +346,7 @@
346346
<para>If the file doesn't exist, this method creates a new file. If the operation is canceled, the task will return in a canceled state.</para>
347347
</summary>
348348
<returns>To be added.</returns>
349-
<remarks>To be added.</remarks>
349+
<remarks>A task that represents the asynchronous append operation.</remarks>
350350
<exception cref="T:System.ArgumentNullException">
351351
<paramref name="path" /> is <see langword="null" />.</exception>
352352
<exception cref="T:System.ArgumentException">

0 commit comments

Comments
 (0)