Fixed small typo in a comment (#20695)
authorlastsannin <33204320+lastsannin@users.noreply.github.com>
Tue, 30 Oct 2018 23:03:00 +0000 (00:03 +0100)
committerJan Kotas <jkotas@microsoft.com>
Tue, 30 Oct 2018 23:03:00 +0000 (16:03 -0700)
fixed a simple typo, "co-" should contain a dash in this case.

src/vm/methodtable.h

index 8bd96da..c93a21f 100644 (file)
@@ -3835,7 +3835,7 @@ private:
         enum_flag_GenericsMask_SharedInst   = 0x00000020,   // shared instantiation, e.g. List<__Canon> or List<MyValueType<__Canon>>
         enum_flag_GenericsMask_TypicalInst  = 0x00000030,   // the type instantiated at its formal parameters, e.g. List<T>
 
-        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