You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@velocity.apache.org by nb...@apache.org on 2008/08/21 18:35:51 UTC

svn commit: r687797 - /velocity/engine/trunk/xdocs/docs/developer-guide.xml

Author: nbubna
Date: Thu Aug 21 09:35:50 2008
New Revision: 687797

URL: http://svn.apache.org/viewvc?rev=687797&view=rev
Log:
fix typo and slightly enhance r687752

Modified:
    velocity/engine/trunk/xdocs/docs/developer-guide.xml

Modified: velocity/engine/trunk/xdocs/docs/developer-guide.xml
URL: http://svn.apache.org/viewvc/velocity/engine/trunk/xdocs/docs/developer-guide.xml?rev=687797&r1=687796&r2=687797&view=diff
==============================================================================
--- velocity/engine/trunk/xdocs/docs/developer-guide.xml (original)
+++ velocity/engine/trunk/xdocs/docs/developer-guide.xml Thu Aug 21 09:35:50 2008
@@ -1893,13 +1893,15 @@
 <br/>
 This property sets the 'Uberspector', the introspection package that
 handles all introspection strategies for Velocity. You can specify a
-coma-separated list of Uberspector classes, in which case all Uberspectors are
+comma-separated list of Uberspector classes, in which case all Uberspectors are
 chained. The default chaining behaviour is to return the first non-null value
 for each introspection call among all provided uberspectors. You can modify
 this behaviour (for instance to restrict access to some methods) by subclassing
 org.apache.velocity.util.introspection.AbstractChainableUberspector (or
 implementing directly
-org.apache.velocity.util.introspection.ChainableUberspector).
+org.apache.velocity.util.introspection.ChainableUberspector).  This
+allows you to create more interesting rules or patterns for Uberspection,
+rather than just returning the first non-null value.
 </p>
 
 </section>