summaryrefslogtreecommitdiff
path: root/src/mscorlib
diff options
context:
space:
mode:
authorStephen Toub <stoub@microsoft.com>2017-02-01 17:10:33 -0500
committerStephen Toub <stoub@microsoft.com>2017-02-01 17:10:33 -0500
commit473843bc02a89bbe7e9905fae40a0d048b7a9d06 (patch)
treee079eab11ade0935863db02ce13db6909b31c491 /src/mscorlib
parentade717c7bbca40632db3b42885589909d645fc1a (diff)
downloadcoreclr-473843bc02a89bbe7e9905fae40a0d048b7a9d06.tar.gz
coreclr-473843bc02a89bbe7e9905fae40a0d048b7a9d06.tar.bz2
coreclr-473843bc02a89bbe7e9905fae40a0d048b7a9d06.zip
Address PR feedback
- Fix ArgumentNullException parameter name
Diffstat (limited to 'src/mscorlib')
-rw-r--r--src/mscorlib/src/System/Threading/ThreadPool.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mscorlib/src/System/Threading/ThreadPool.cs b/src/mscorlib/src/System/Threading/ThreadPool.cs
index f56a082698..8bcdb9b80e 100644
--- a/src/mscorlib/src/System/Threading/ThreadPool.cs
+++ b/src/mscorlib/src/System/Threading/ThreadPool.cs
@@ -1330,7 +1330,7 @@ namespace System.Threading
{
if (callBack == null)
{
- throw new ArgumentNullException(nameof(WaitCallback));
+ throw new ArgumentNullException(nameof(callBack));
}
//The thread pool maintains a per-appdomain managed work queue.