Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIchHabeKeineNamen <36535895+Banyc@users.noreply.github.com>2021-05-22 04:30:01 +0300
committerGitHub <noreply@github.com>2021-05-22 04:30:01 +0300
commit34dff2d35b748c441d291b8be81d6ce3c5647f29 (patch)
tree58497d5c293cc9f988b0954111481bf4b63be1f4 /src/coreclr/inc
parent35a0c5bee1572e4800d1259ad93697fcce6390f6 (diff)
Fix typos in comments (#53064)
Diffstat (limited to 'src/coreclr/inc')
-rw-r--r--src/coreclr/inc/corjit.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/coreclr/inc/corjit.h b/src/coreclr/inc/corjit.h
index c2fe4d9521e..b6c97d9f5ab 100644
--- a/src/coreclr/inc/corjit.h
+++ b/src/coreclr/inc/corjit.h
@@ -16,7 +16,7 @@
//
// NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
//
-// The JIT/EE interface is versioned. By "interface", we mean mean any and all communication between the
+// The JIT/EE interface is versioned. By "interface", we mean any and all communication between the
// JIT and the EE. Any time a change is made to the interface, the JIT/EE interface version identifier
// must be updated. See code:JITEEVersionIdentifier for more information.
//
@@ -112,7 +112,7 @@ enum CorJitResult
// to guide the memory allocation for the code, readonly data, and read-write data
enum CorJitAllocMemFlag
{
- CORJIT_ALLOCMEM_DEFAULT_CODE_ALIGN = 0x00000000, // The code will be use the normal alignment
+ CORJIT_ALLOCMEM_DEFAULT_CODE_ALIGN = 0x00000000, // The code will use the normal alignment
CORJIT_ALLOCMEM_FLG_16BYTE_ALIGN = 0x00000001, // The code will be 16-byte aligned
CORJIT_ALLOCMEM_FLG_RODATA_16BYTE_ALIGN = 0x00000002, // The read-only data will be 16-byte aligned
CORJIT_ALLOCMEM_FLG_32BYTE_ALIGN = 0x00000004, // The code will be 32-byte aligned