From 3564b03b02dfc47a4a739bdfa0ae99e394e46f95 Mon Sep 17 00:00:00 2001 From: Aaron Robinson Date: Sun, 15 Mar 2020 21:23:49 -0700 Subject: [PATCH] Update gccover.cpp Misspelled function referenced in comment. --- src/coreclr/src/vm/gccover.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/coreclr/src/vm/gccover.cpp b/src/coreclr/src/vm/gccover.cpp index 2490ee8..15c7875 100644 --- a/src/coreclr/src/vm/gccover.cpp +++ b/src/coreclr/src/vm/gccover.cpp @@ -1404,8 +1404,8 @@ BOOL OnGcCoverageInterrupt(PCONTEXT regs) { // No thread at the moment so we aren't doing coverage for this function. // This should only occur for methods with the NativeCallableAttribute, - // where the caller could be coming from a thread unknown to the CLR and - // we haven't created a thread yet - see PreStubWorker_Premptive(). + // where the call could be coming from a thread unknown to the CLR and + // we haven't created a thread yet - see PreStubWorker_Preemptive(). _ASSERTE(pMD->HasNativeCallableAttribute()); return (FALSE); } -- 2.7.4