You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2012/01/26 18:32:54 UTC

svn commit: r1236303 - /tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/util/InheritanceSearch.java

Author: hlship
Date: Thu Jan 26 17:32:54 2012
New Revision: 1236303

URL: http://svn.apache.org/viewvc?rev=1236303&view=rev
Log:
More minor Javadoc typo fixes

Modified:
    tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/util/InheritanceSearch.java

Modified: tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/util/InheritanceSearch.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/util/InheritanceSearch.java?rev=1236303&r1=1236302&r2=1236303&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/util/InheritanceSearch.java (original)
+++ tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/util/InheritanceSearch.java Thu Jan 26 17:32:54 2012
@@ -26,7 +26,7 @@ import java.util.Set;
  * The search starts with the initial class (provided in the constructor). It progresses up the inheritance chain, but
  * skips java.lang.Object.
  * <p/>
- * Once classes are exhausted, the inheritance hiearchy is searched. This is a breadth-first search, rooted in the
+ * Once classes are exhausted, the inheritance hierarchy is searched. This is a breadth-first search, rooted in the
  * interfaces implemented by the initial class at its super classes.
  * <p/>
  * Once all interfaces are exhausted, java.lang.Object is returned (it is always returned last).
@@ -39,7 +39,7 @@ import java.util.Set;
  * This class implements the {@link Iterable} interface, so it can be used directly in a for loop: <code> for (Class
  * search : new InheritanceSearch(startClass)) { ... } </code>
  * <p/>
- * This class is not threadsafe.
+ * This class is not thread-safe.
  */
 public class InheritanceSearch implements Iterator<Class>, Iterable<Class>
 {