summaryrefslogtreecommitdiff
path: root/src/binder
diff options
context:
space:
mode:
authorJohn Doe <github.john.doe@outlook.com>2018-06-28 04:47:06 -0700
committerJan Kotas <jkotas@microsoft.com>2018-06-28 04:47:06 -0700
commit1a34c72e9e719c9d3879c2a519bf70a05f42869c (patch)
tree3e25769f6e2fffd251f066a24a9bd35ebe684eb1 /src/binder
parent127a888c33eedefe42d2d01cab4cfaaa3b48f9b0 (diff)
downloadcoreclr-1a34c72e9e719c9d3879c2a519bf70a05f42869c.tar.gz
coreclr-1a34c72e9e719c9d3879c2a519bf70a05f42869c.tar.bz2
coreclr-1a34c72e9e719c9d3879c2a519bf70a05f42869c.zip
Typo (#18684)
* approrpriate -> appropriate * allignment -> alignment * aquire -> acquire * aquisition -> acquisition * arbitraty -> arbitrary * arcance -> arcane * archetecture -> architecture * Archicture -> Architecture * architecures -> architectures * argmuent -> argument
Diffstat (limited to 'src/binder')
-rw-r--r--src/binder/assembly.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/binder/assembly.cpp b/src/binder/assembly.cpp
index 8fcc7cf54f..5d3a674a55 100644
--- a/src/binder/assembly.cpp
+++ b/src/binder/assembly.cpp
@@ -20,7 +20,7 @@ namespace BINDER_SPACE
{
namespace
{
- BOOL IsPlatformArchicture(PEKIND kArchitecture)
+ BOOL IsPlatformArchitecture(PEKIND kArchitecture)
{
return ((kArchitecture != peMSIL) && (kArchitecture != peNone));
}
@@ -279,7 +279,7 @@ Exit:
/* static */
BOOL Assembly::IsValidArchitecture(PEKIND kArchitecture)
{
- if (!IsPlatformArchicture(kArchitecture))
+ if (!IsPlatformArchitecture(kArchitecture))
return TRUE;
return (kArchitecture == GetSystemArchitecture());