You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2011/04/13 17:36:41 UTC

svn commit: r1091821 - /wicket/trunk/wicket-core/src/main/java/org/apache/wicket/settings/IRequestCycleSettings.java

Author: mgrigorov
Date: Wed Apr 13 15:36:40 2011
New Revision: 1091821

URL: http://svn.apache.org/viewvc?rev=1091821&view=rev
Log:
Fix a typo in javadoc


Modified:
    wicket/trunk/wicket-core/src/main/java/org/apache/wicket/settings/IRequestCycleSettings.java

Modified: wicket/trunk/wicket-core/src/main/java/org/apache/wicket/settings/IRequestCycleSettings.java
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket-core/src/main/java/org/apache/wicket/settings/IRequestCycleSettings.java?rev=1091821&r1=1091820&r2=1091821&view=diff
==============================================================================
--- wicket/trunk/wicket-core/src/main/java/org/apache/wicket/settings/IRequestCycleSettings.java (original)
+++ wicket/trunk/wicket-core/src/main/java/org/apache/wicket/settings/IRequestCycleSettings.java Wed Apr 13 15:36:40 2011
@@ -56,7 +56,7 @@ import org.apache.wicket.util.time.Durat
  * twice for a request.</li>
  * <li>IRequestCycleSettings.RenderStrategy.REDIRECT_TO_BUFFER. This option handles both the action-
  * and the render part of the request in one physical request, but instead of streaming the result
- * to the browser directly, it is kept in memory, and a redirect is issue to get this buffered
+ * to the browser directly, it is kept in memory, and a redirect is issued to get this buffered
  * result (after which it is immediately removed). This option currently is the default render
  * strategy, as it shields you from the double submit problem, while being more efficient and less
  * error prone regarding to detachable models.</li>