Fixes spelling (#679)

This commit is contained in:
Justin Kotalik 2018-03-16 09:27:40 -07:00 committed by GitHub
parent 2f3e0384bf
commit 8ff9ce70c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -128,7 +128,7 @@ IN_PROCESS_HANDLER::SetAsyncCompletionStatus(
} }
VOID VOID
IN_PROCESS_HANDLER::SetManangedHttpContext( IN_PROCESS_HANDLER::SetManagedHttpContext(
PVOID pManagedHttpContext PVOID pManagedHttpContext
) )
{ {

View File

@ -35,7 +35,7 @@ public:
); );
VOID VOID
SetManangedHttpContext( SetManagedHttpContext(
PVOID pManagedHttpContext PVOID pManagedHttpContext
); );

View File

@ -116,7 +116,7 @@ http_set_managed_context(
{ {
// todo: should we consider changing the signature // todo: should we consider changing the signature
HRESULT hr = S_OK; HRESULT hr = S_OK;
pInProcessHandler->SetManangedHttpContext(pvManagedContext); pInProcessHandler->SetManagedHttpContext(pvManagedContext);
return hr; return hr;
} }