Some errors I found in the documentation. There also seems to be some typos (ex: "locaiton", "mandetory") but those are in code examples, so more important :
http://www.jamon.org/tutorial/TutorialSample5.html
static java.lang.math.abs;
should be
static java.lang.Math.abs;
http://www.jamon.org/tutorial/TutorialSample10.html
There are two occurences of :
<%override tutorialName>
Those should be, I think :
<%override title>
http://www.jamon.org/Reference.html
org.jamon.alais.nav=/com/foo/bar/navigation
org.jamon.alais.legal=/attorneys/documents
should be :
org.jamon.alias.nav=/com/foo/bar/navigation
org.jamon.alias.legal=/attorneys/documents
Thanks
Anonymous