I have **Mastering Dojo** by Gill, Riecke and Russell, but I'm looking for something more information dense and less erroneous. For example, here's an error I noticed: > "In good object-oriented frameworks, some built-in methods are meant for the programmer to call, and some are meant for the programmer to override. A good example of the latter is *compare* in Java. This method is defined at the root of the class tree (*Object*) and overridden in most of the built-in classes." (p. 329) I think they meant *equals*, not *compare*. See [http://java.sun.com/j2se/1.3/docs/api/java/lang/Object.html#equals(java.lang.Object)][1] Another thing I found disappointing about **Mastering Dojo** is that it's very "Pro-Dojo". In and of itself this is not bad, but when one of the book's authors is a major Dojo code contributor, opening chapter one with this sentence strikes me as just a bit arrogant/pretentious/biased/blind: > There's a new king in town. Right now I'm waiting for Amazon to deliver **Dojo: The Definitive Guide**... [1]: http://java.sun.com/j2se/1.3/docs/api/java/lang/Object.html#equals(java.lang.Object)