Errata for "Modifications to Java Since 1.0, Proposed Modifications to Java, and Titanium Compatibility With Java", by Amir Kamil. 1. In addition to those mentioned in the document, a couple of new constructs were also introduced in Java 1.2, namely qualified "this" and "super". From within an inner class, these keywords can be qualified with the type name of an enclosing class in order to refer to the enclosing instance corresponding to that class and the instance's superclass, respectively. The qualified keywords can only be used syntactically where the unqualified keywords are allowed. 2. The document is erroneous in stating that nested templates are not allowed in Titanium. They are in fact allowed, but as in C++, care must be taken to avoid a parsing conflict with the arithmetic and logical right shift operators. Thus whitespace must be introduced in between consecutive template closing brackets. This parsing bug will be fixed in the future.