Skip to content

Commit 2a7cd47

Browse files
Merge pull request #15 from parentelement/next
Fix XML Documentation
2 parents 6a8f730 + 09fff5e commit 2a7cd47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ParentElement.ReProcess/CommandBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public CommandBuilder WithArguments(IEnumerable<string> arguments)
6868
/// </summary>
6969
/// <param name="path">A <see langword="string"/> representing the Working Directory for the command</param>
7070
/// <returns>The current <see cref="CommandBuilder" /> instance </returns>
71-
/// <exception cref="System.ArgumentException">Thrown when <paramref name="path"/> is specified and not a valid directory</exception>
71+
/// <exception cref="System.IO.DirectoryNotFoundException">Thrown when <paramref name="path"/> is specified and not a valid directory</exception>
7272
public CommandBuilder WithWorkingDirectory(string path)
7373
{
7474
if (!string.IsNullOrWhiteSpace(path) && !Directory.Exists(path))

0 commit comments

Comments
 (0)