Fix IIOManager documentation comments

This commit is contained in:
Jordan Dominion
2023-10-21 00:51:07 -04:00
parent 66ace82477
commit a2b4d97335
+2 -2
View File
@@ -88,7 +88,7 @@ namespace Tgstation.Server.Host.IO
ValueTask<byte[]> ReadAllBytes(string path, CancellationToken cancellationToken);
/// <summary>
/// Returns directory names in a given <paramref name="path"/>.
/// Returns full directory names in a given <paramref name="path"/>.
/// </summary>
/// <param name="path">The path to search for directories.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> for the operation.</param>
@@ -96,7 +96,7 @@ namespace Tgstation.Server.Host.IO
Task<IReadOnlyList<string>> GetDirectories(string path, CancellationToken cancellationToken);
/// <summary>
/// Returns file names in a given <paramref name="path"/>.
/// Returns full file names in a given <paramref name="path"/>.
/// </summary>
/// <param name="path">The path to search for files.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> for the operation.</param>