Skip to content

Commit b58cec2

Browse files
authored
Fix XML documentation reference for invalid path characters in IFileSystemService (#118)
1 parent 1159ffa commit b58cec2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Keystone.Cli/Application/FileSystem/IFileSystemService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public interface IFileSystemService
2525
/// </summary>
2626
/// <param name="path">The directory to create.</param>
2727
/// <returns>An object that represents the directory at the specified path. This object is returned regardless of whether a directory at the specified path already exists.</returns>
28-
/// <exception cref="ArgumentException"><paramref name="path" /> is a zero-length string, or contains one or more invalid characters. You can query for invalid characters by using the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
28+
/// <exception cref="ArgumentException"><paramref name="path" /> is a zero-length string, or contains one or more invalid characters. You can query for invalid characters by using the <see cref="System.IO.Path.GetInvalidPathChars" /> method.</exception>
2929
/// <exception cref="ArgumentNullException"><paramref name="path" /> is <see langword="null" />.</exception>
3030
/// <exception cref="UnauthorizedAccessException">The caller does not have the required permission.</exception>
3131
/// <exception cref="PathTooLongException">The specified path exceeds the system-defined maximum length.</exception>

0 commit comments

Comments
 (0)