< prev index next >

src/jdk.compiler/share/classes/com/sun/tools/javac/code/TypeMetadata.java

Print this page

        

@@ -33,13 +33,13 @@
 
 /**
  * TypeMetadata is essentially an immutable {@code EnumMap<Entry.Kind, <? extends Entry>>}
  *
  * A metadata class represented by a subtype of Entry can express a property on a Type instance.
- * Thers should be at most one instance of an Entry per Entry.Kind on any given Type instance.
+ * There should be at most one instance of an Entry per Entry.Kind on any given Type instance.
  *
- * Metadata classes of a specific kind are responsible for how they combine themselvs.
+ * Metadata classes of a specific kind are responsible for how they combine themselves.
  *
  * @implNote {@code Entry:combine} need not be commutative.
  */
 public class TypeMetadata {
     public static final TypeMetadata EMPTY = new TypeMetadata();
< prev index next >