summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/dlls/mscoree/mscoree.cpp2
-rw-r--r--src/pal/src/safecrt/internal_securecrt.h2
-rw-r--r--src/vm/appdomain.cpp2
-rw-r--r--tests/src/JIT/jit64/regress/vsw/528315/simple-repro.cs2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/dlls/mscoree/mscoree.cpp b/src/dlls/mscoree/mscoree.cpp
index 762926e641..40cc04f098 100644
--- a/src/dlls/mscoree/mscoree.cpp
+++ b/src/dlls/mscoree/mscoree.cpp
@@ -59,7 +59,7 @@ extern "C" BOOL WINAPI _CRT_INIT(HANDLE hInstance, DWORD dwReason, LPVOID lpRese
extern "C" BOOL WINAPI DllMain(HANDLE hInstance, DWORD dwReason, LPVOID lpReserved);
// For the CoreClr, this is the real DLL entrypoint. We make ourselves the first entrypoint as
-// we need to capture coreclr's hInstance before the C runtine initializes. This function
+// we need to capture coreclr's hInstance before the C runtime initializes. This function
// will capture hInstance, let the C runtime initialize and then invoke the "classic"
// DllMain that initializes everything else.
extern "C" BOOL WINAPI CoreDllMain(HANDLE hInstance, DWORD dwReason, LPVOID lpReserved)
diff --git a/src/pal/src/safecrt/internal_securecrt.h b/src/pal/src/safecrt/internal_securecrt.h
index c38bc4613b..627989e7e0 100644
--- a/src/pal/src/safecrt/internal_securecrt.h
+++ b/src/pal/src/safecrt/internal_securecrt.h
@@ -33,7 +33,7 @@
#define __in
/*
- * The original SafeCRT implemention allows runtine control over buffer checking.
+ * The original SafeCRT implemention allows runtime control over buffer checking.
* For now we'll key this off the debug flag.
*/
#ifdef _DEBUG
diff --git a/src/vm/appdomain.cpp b/src/vm/appdomain.cpp
index 7b47735cb8..b95e216be7 100644
--- a/src/vm/appdomain.cpp
+++ b/src/vm/appdomain.cpp
@@ -6447,7 +6447,7 @@ BOOL AppDomain::PostBindResolveAssembly(AssemblySpec *pPrePolicySpec,
// the adding of the result to fail. Checking for already chached specs
// is not an option as it would introduce another race window.
// The binder does a re-fetch of the
- // orignal binding spec and therefore will not cause inconsistency here.
+ // original binding spec and therefore will not cause inconsistency here.
// For the purposes of the resolve event, failure to add to the cache still is a success.
AddFileToCache(pPrePolicySpec, result, TRUE /* fAllowFailure */);
if (*ppFailedSpec != pPrePolicySpec && pPostPolicySpec->CanUseWithBindingCache())
diff --git a/tests/src/JIT/jit64/regress/vsw/528315/simple-repro.cs b/tests/src/JIT/jit64/regress/vsw/528315/simple-repro.cs
index fa5258f082..02253e2e1f 100644
--- a/tests/src/JIT/jit64/regress/vsw/528315/simple-repro.cs
+++ b/tests/src/JIT/jit64/regress/vsw/528315/simple-repro.cs
@@ -28,7 +28,7 @@ internal class NodeFactory
case NodeType.Not:
return this.Conditional(condition.Child, falseBranch, trueBranch); // <-- tail recursion
}
- return falseBranch; //<- should return the orignal trueBranch
+ return falseBranch; //<- should return the original trueBranch
}
private class Test