Author: ivaynberg
Date: Thu Aug 13 15:06:14 2009
New Revision: 803919
URL: http://svn.apache.org/viewvc?rev=803919&view=rev
Log:
fixed javadoc typo
Modified:
wicket/trunk/wicket/src/main/java/org/apache/wicket/IDetachListener.java
Modified:
wicket/trunk/wicket/src/main/java/org/apache/wicket/IDetachListener.java
URL:
http://svn.apache.org/viewvc/wicket/trunk/wicket/src/main/java/org/apache/wicket/IDetachListener.java?rev=803919&r1=803918&r2=803919&view=diff
==============================================================================
--- wicket/trunk/wicket/src/main/java/org/apache/wicket/IDetachListener.java
(original)
+++ wicket/trunk/wicket/src/main/java/org/apache/wicket/IDetachListener.java
Thu Aug 13 15:06:14 2009
@@ -29,7 +29,7 @@
/**
* Called when component is being detached via a call to {...@link
Component#detach()}.
*
- * NOTICE: The componet is in a fully detached state when this method
is invoked; It is the
+ * NOTICE: The component is in a fully detached state when this method
is invoked; It is the
* listener's responsibility to maintain the detached state after this
method is finished -
* which means if the listener causes any part of the component (eg
model) to become reattached
* it is the listener's responsibility to detach it before this method
exits.