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 2014/02/18 15:13:23 UTC

git commit: Fix typos in javadoc

Repository: wicket
Updated Branches:
  refs/heads/sandbox/component-queueing-2 6d00d2cdd -> 5a4a77b9e


Fix typos in javadoc


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

Branch: refs/heads/sandbox/component-queueing-2
Commit: 5a4a77b9e14a862471e37c0cb40ed156a58a1c02
Parents: 6d00d2c
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Tue Feb 18 16:13:03 2014 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Tue Feb 18 16:13:03 2014 +0200

----------------------------------------------------------------------
 .../src/main/java/org/apache/wicket/IQueueRegion.java   | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/5a4a77b9/wicket-core/src/main/java/org/apache/wicket/IQueueRegion.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/IQueueRegion.java b/wicket-core/src/main/java/org/apache/wicket/IQueueRegion.java
index beebdda..c0e431a 100644
--- a/wicket-core/src/main/java/org/apache/wicket/IQueueRegion.java
+++ b/wicket-core/src/main/java/org/apache/wicket/IQueueRegion.java
@@ -35,18 +35,18 @@ public interface IQueueRegion
 	/**
 	 * Gets the markup that will be used to dequeue components in this container. Usually containers
 	 * will return their associated markup by simply delegating to
-	 * {@link MarkupContainer#getAssociatedMarkup()}, but compoennts that do not render markup in a
+	 * {@link MarkupContainer#getAssociatedMarkup()}, but components that do not render markup in a
 	 * standard way (such as repeaters and borders) may choose to override this method to implement
-	 * custom behavior for the dequeuing process.
+	 * custom behavior for the dequeueing process.
 	 */
 	public IMarkupFragment getDequeueMarkup();
 
 	/**
 	 * Starts component dequeueing on this {@link IQueueRegion}. This is the entry point into the
-	 * dequeuing process, it creates the {@link DequeueContext} and delegates the opreation to the
-	 * {@link #dequeue(DequeueContext)} method which performs the actual dequeuing. The context's
-	 * markup is retrieved using the {@link #getDequeueMarkup()} method which allows subclasses to
-	 * provide dequeueing-specific markup.
+	 * dequeuing process, it creates the {@link DequeueContext} and delegates the operation to the
+	 * {@link org.apache.wicket.MarkupContainer#dequeue(DequeueContext)} method which performs the
+	 * actual dequeueing. The context's markup is retrieved using the {@link #getDequeueMarkup()}
+	 * method which allows subclasses to provide dequeueing-specific markup.
 	 */
 	public void dequeue();
 }