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 2012/04/25 16:54:20 UTC

[2/2] git commit: Fix typos in javadocs and comments

Fix typos in javadocs and comments


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/9021d27f
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/9021d27f
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/9021d27f

Branch: refs/heads/master
Commit: 9021d27fc979c45854af6c95531cae2c62a8edf8
Parents: be07e7c
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Wed Apr 25 17:50:50 2012 +0300
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Wed Apr 25 17:50:50 2012 +0300

----------------------------------------------------------------------
 .../org/apache/wicket/markup/html/WebPage.java     |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/9021d27f/wicket-core/src/main/java/org/apache/wicket/markup/html/WebPage.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/markup/html/WebPage.java b/wicket-core/src/main/java/org/apache/wicket/markup/html/WebPage.java
index abb5cd2..743e327 100644
--- a/wicket-core/src/main/java/org/apache/wicket/markup/html/WebPage.java
+++ b/wicket-core/src/main/java/org/apache/wicket/markup/html/WebPage.java
@@ -67,7 +67,9 @@ public class WebPage extends Page
 	private static final long serialVersionUID = 1L;
 
 	/**
-	 * Constructor. Having this constructor public means that your page is 'bookmarkable' and hence
+	 * Constructor.
+	 *
+	 * Having this constructor public means that your page is 'bookmarkable' and hence
 	 * can be called/ created from anywhere.
 	 */
 	protected WebPage()
@@ -133,7 +135,7 @@ public class WebPage extends Page
 		// Configure the response such as headers etc.
 		configureResponse((WebResponse)RequestCycle.get().getResponse());
 
-		// The rules if and when to insert an xml decl in the response are a it tricky. Allow the
+		// The rules if and when to insert an xml decl in the response are a bit tricky. Allow the
 		// user to replace the default per page and per application.
 		renderXmlDecl();
 
@@ -141,7 +143,7 @@ public class WebPage extends Page
 	}
 
 	/**
-	 * The rules if and when to insert an xml decl in the response are a it tricky. Allow the user
+	 * The rules if and when to insert an xml decl in the response are a bit tricky. Allow the user
 	 * to replace the default per page and per application.
 	 */
 	protected void renderXmlDecl()
@@ -308,7 +310,7 @@ public class WebPage extends Page
 	}
 
 	/**
-	 * Prevents page from get dirt inside an AJAX request.
+	 * Prevents page from get dirty inside an AJAX request.
 	 */
 	@Override
 	public final void dirty(boolean isInitialization)