You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@click.apache.org by sa...@apache.org on 2010/07/19 13:41:07 UTC

svn commit: r965437 - /click/trunk/click/framework/src/org/apache/click/Behavior.java

Author: sabob
Date: Mon Jul 19 11:41:07 2010
New Revision: 965437

URL: http://svn.apache.org/viewvc?rev=965437&view=rev
Log:
javadoc

Modified:
    click/trunk/click/framework/src/org/apache/click/Behavior.java

Modified: click/trunk/click/framework/src/org/apache/click/Behavior.java
URL: http://svn.apache.org/viewvc/click/trunk/click/framework/src/org/apache/click/Behavior.java?rev=965437&r1=965436&r2=965437&view=diff
==============================================================================
--- click/trunk/click/framework/src/org/apache/click/Behavior.java (original)
+++ click/trunk/click/framework/src/org/apache/click/Behavior.java Mon Jul 19 11:41:07 2010
@@ -27,7 +27,7 @@ package org.apache.click;
  * To handle an Ajax request Behavior exposes the listener method: {@link #onAction(org.apache.click.Control) onAction}.
  * The <tt>onAction</tt> method returns a Partial response that is rendered back
  * to the browser. Before Click invokes the <tt>onAction</tt> method it checks
- * whether the request is targeted at the Behavior by calling the method
+ * whether the request is targeted at that Behavior by calling the method
  * {@link #isRequestTarget(org.apache.click.Context) Behavior.isRequestTarget()}.
  * Click will only invoke <tt>onAction</tt> if <tt>isRequestTarget</tt> returns true.
  * <p/>