Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit fba79fa

Browse files
authored
Merge pull request #164 from github-for-unity/fixes/nice-io
NiceIO Exception Fix
2 parents 360481d + 6e6c4b0 commit fba79fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitHub.Api/IO/NiceIO.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ private static StringComparison PathStringComparison
6262
public NPath(string path)
6363
{
6464
if (path == null)
65-
throw new ArgumentNullException();
65+
throw new ArgumentNullException("path");
6666

6767
path = ParseDriveLetter(path, out _driveLetter);
6868

0 commit comments

Comments
 (0)