You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by da...@apache.org on 2007/04/20 00:05:55 UTC

svn commit: r530565 - /incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/behavior/IBehavior.java

Author: dashorst
Date: Thu Apr 19 15:05:54 2007
New Revision: 530565

URL: http://svn.apache.org/viewvc?view=rev&rev=530565
Log:
Fixed typo

Modified:
    incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/behavior/IBehavior.java

Modified: incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/behavior/IBehavior.java
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/behavior/IBehavior.java?view=diff&rev=530565&r1=530564&r2=530565
==============================================================================
--- incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/behavior/IBehavior.java (original)
+++ incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/behavior/IBehavior.java Thu Apr 19 15:05:54 2007
@@ -56,7 +56,7 @@
 	 * Bind this handler to the given component. This method is called by the
 	 * host component immediately after this behavior is added to it. This
 	 * method is useful if you need to do initialization based on the component
-	 * it is attached can you can't wait to do it at render time. Keep in mind
+	 * it is attached and you can't wait to do it at render time. Keep in mind
 	 * that if you decide to keep a reference to the host component, it is not
 	 * thread safe anymore, and should thus only be used in situations where you
 	 * do not reuse the behavior for multiple components.