Skip to content

Commit 0740288

Browse files
Johnsavadkuhijimevans
authored andcommitted
Correcting argument name in exception in DefaultWait{T}.cs
Signed-off-by: Jim Evans <[email protected]>
1 parent 072214e commit 0740288

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnet/src/support/UI/DefaultWait{T}.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public DefaultWait(T input, IClock clock)
6363

6464
if (clock == null)
6565
{
66-
throw new ArgumentNullException("clock", "input cannot be null");
66+
throw new ArgumentNullException("clock", "clock cannot be null");
6767
}
6868

6969
this.input = input;

0 commit comments

Comments
 (0)