Spelling mistake in debug log

This commit is contained in:
Justin Kotalik 2018-08-23 13:44:30 -07:00
parent b3893720b7
commit 1d4d882c0d
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ HOSTFXR_UTILITY::ParseHostfxrArguments(
auto pwzArgs = std::unique_ptr<LPWSTR[], LocalFreeDeleter>(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++)