Skip to content

Commit 6724a7f

Browse files
committed
Fix xml doc for possible exceptions
1 parent 785e8d9 commit 6724a7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnet/src/webdriver/ICookieJar.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public interface ICookieJar
4747
/// <param name="name">The name of the cookie to retrieve.</param>
4848
/// <returns>The <see cref="Cookie"/> containing the name. Returns <see langword="null"/>
4949
/// if no cookie with the specified name is found.</returns>
50-
/// <exception cref="ArgumentNullException">If <paramref name="name"/> is <see langword="null"/>.</exception>
50+
/// <exception cref="ArgumentException">If <paramref name="name"/> is <see langword="null"/> or <see cref="string.Empty"/>.</exception>
5151
Cookie? GetCookieNamed(string name);
5252

5353
/// <summary>

0 commit comments

Comments
 (0)