From 4b7f40491acf41a3fd26128a62d3fe0c4fda19ee Mon Sep 17 00:00:00 2001 From: lastsannin <33204320+lastsannin@users.noreply.github.com> Date: Wed, 31 Oct 2018 00:03:00 +0100 Subject: [PATCH] Fixed small typo in a comment (#20695) fixed a simple typo, "co-" should contain a dash in this case. --- src/vm/methodtable.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vm/methodtable.h b/src/vm/methodtable.h index 8bd96da..c93a21f 100644 --- a/src/vm/methodtable.h +++ b/src/vm/methodtable.h @@ -3835,7 +3835,7 @@ private: enum_flag_GenericsMask_SharedInst = 0x00000020, // shared instantiation, e.g. List<__Canon> or List> enum_flag_GenericsMask_TypicalInst = 0x00000030, // the type instantiated at its formal parameters, e.g. List - enum_flag_HasVariance = 0x00000100, // This is an instantiated type some of whose type parameters are co or contra-variant + enum_flag_HasVariance = 0x00000100, // This is an instantiated type some of whose type parameters are co- or contra-variant enum_flag_HasDefaultCtor = 0x00000200, enum_flag_HasPreciseInitCctors = 0x00000400, // Do we need to run class constructors at allocation time? (Not perf important, could be moved to EEClass -- 2.7.4