diff options
author | あまみや ゆうこ <1@1234.sh> | 2015-10-07 07:00:15 +0800 |
---|---|---|
committer | あまみや ゆうこ <1@1234.sh> | 2015-10-07 07:00:15 +0800 |
commit | 1f940efbe82d6ba5a9c7f8269f087d0709d77011 (patch) | |
tree | 15c32f2a8a5a53d34afef901f827c960da885dbb /src/dlls | |
parent | ef9e505c66a82dc6928b8ddf9332a88e675d532d (diff) | |
download | coreclr-1f940efbe82d6ba5a9c7f8269f087d0709d77011.tar.gz coreclr-1f940efbe82d6ba5a9c7f8269f087d0709d77011.tar.bz2 coreclr-1f940efbe82d6ba5a9c7f8269f087d0709d77011.zip |
correct word spelling
Diffstat (limited to 'src/dlls')
-rw-r--r-- | src/dlls/mscoree/delayload.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/dlls/mscoree/delayload.cpp b/src/dlls/mscoree/delayload.cpp index 0226f7da2e..8ea2311314 100644 --- a/src/dlls/mscoree/delayload.cpp +++ b/src/dlls/mscoree/delayload.cpp @@ -68,10 +68,10 @@ ExternC extern PfnDliHook __pfnDliNotifyHook = CorDelayLoadHook; extern void DECLSPEC_NORETURN ThrowOutOfMemory(); //***************************************************************************** -// Called for errors that might have occured. +// Called for errors that might have occurred. //***************************************************************************** FARPROC __stdcall CorDelayErrorHook( // Always 0. - unsigned dliNotify, // What event has occured, dli* flag. + unsigned dliNotify, // What event has occurred, dli* flag. DelayLoadInfo *pdli) // Description of the event. { @@ -164,7 +164,7 @@ DWORD _FormatMessage( // How many characters written. // A library failed to load. This is always a bad thing. //***************************************************************************** void _FailLoadLib( - unsigned dliNotify, // What event has occured, dli* flag. + unsigned dliNotify, // What event has occurred, dli* flag. DelayLoadInfo *pdli) // Description of the event. { STATIC_CONTRACT_NOTHROW; @@ -215,7 +215,7 @@ void _FailLoadLib( // A library failed to load. This is always a bad thing. //***************************************************************************** void _FailGetProc( - unsigned dliNotify, // What event has occured, dli* flag. + unsigned dliNotify, // What event has occurred, dli* flag. DelayLoadInfo *pdli) // Description of the event. { STATIC_CONTRACT_NOTHROW; @@ -304,7 +304,7 @@ HMODULE DoPreloadLibraryThrowing(LPCSTR szLibrary) // load event that occurs while the application is running. //***************************************************************************** FARPROC __stdcall CorDelayLoadHook( // Always 0. - unsigned dliNotify, // What event has occured, dli* flag. + unsigned dliNotify, // What event has occurred, dli* flag. DelayLoadInfo *pdli) // Description of the event. { #ifdef _DEBUG |