diff --git a/src/coreclr/jit/importercalls.cpp b/src/coreclr/jit/importercalls.cpp index 51e0424fe58d8d..13c0bf64ee6664 100644 --- a/src/coreclr/jit/importercalls.cpp +++ b/src/coreclr/jit/importercalls.cpp @@ -11162,7 +11162,7 @@ NamedIntrinsic Compiler::lookupNamedIntrinsic(CORINFO_METHOD_HANDLE method) if (strcmp(methodName, "ConfigureAwait") == 0) { if (strcmp(className, "Task`1") == 0 || strcmp(className, "Task") == 0 || - strcmp(className, "ValuTask`1") == 0 || strcmp(className, "ValueTask") == 0) + strcmp(className, "ValueTask`1") == 0 || strcmp(className, "ValueTask") == 0) { result = NI_System_Threading_Tasks_Task_ConfigureAwait; }