From 1d4d882c0d1f4fc48d5bc0a8f97a5f86ea1b0816 Mon Sep 17 00:00:00 2001 From: Justin Kotalik Date: Thu, 23 Aug 2018 13:44:30 -0700 Subject: [PATCH] Spelling mistake in debug log --- src/AspNetCoreModuleV2/CommonLib/hostfxr_utility.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AspNetCoreModuleV2/CommonLib/hostfxr_utility.cpp b/src/AspNetCoreModuleV2/CommonLib/hostfxr_utility.cpp index c96133596d..223cb38ab4 100644 --- a/src/AspNetCoreModuleV2/CommonLib/hostfxr_utility.cpp +++ b/src/AspNetCoreModuleV2/CommonLib/hostfxr_utility.cpp @@ -159,7 +159,7 @@ HOSTFXR_UTILITY::ParseHostfxrArguments( auto pwzArgs = std::unique_ptr(CommandLineToArgvW(applicationArguments.c_str(), &argc)); if (!pwzArgs) { - throw StartupParametersResolutionException(format(L"Unable parse command line argumens '%s' or '%s'", applicationArguments.c_str())); + throw StartupParametersResolutionException(format(L"Unable parse command line arguments '%s' or '%s'", applicationArguments.c_str())); } for (int intArgsProcessed = 0; intArgsProcessed < argc; intArgsProcessed++)