Author: mgrigorov
Date: Thu Oct 27 08:44:18 2011
New Revision: 1189676

URL: http://svn.apache.org/viewvc?rev=1189676&view=rev
Log:
Fix typos in javadoc.

No functional changes.


Modified:
    
wicket/trunk/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/PanelMarkupSourcingStrategy.java

Modified: 
wicket/trunk/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/PanelMarkupSourcingStrategy.java
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/PanelMarkupSourcingStrategy.java?rev=1189676&r1=1189675&r2=1189676&view=diff
==============================================================================
--- 
wicket/trunk/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/PanelMarkupSourcingStrategy.java
 (original)
+++ 
wicket/trunk/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/PanelMarkupSourcingStrategy.java
 Thu Oct 27 08:44:18 2011
@@ -41,13 +41,13 @@ public class PanelMarkupSourcingStrategy
         * 
         * @param wicketTagName
         *            The tag name for <code>&lt;wicket:'name' ..&gt;</code>. 
Please note that any such
-        *            tag must have been registed via
-        *            
<code>WicketTagIdentifier.registerWellKnownTagName('name');</code>
+        *            tag must have been registered via
+        *            
<code>WicketTagIdentifier.registerWellKnownTagName("name");</code>
         * @param allowWicketComponentsInBodyMarkup
-        *            False for Panel and true for Border components. If Panel 
than the body markup
-        *            should only contain raw markup, which is ignored 
(removed), but no Wicket
-        *            Component. With Border components, the body markup will 
be associated with the
-        *            Body Component.
+        *            {@code false} for Panel and {@code true} for Border 
components. If Panel then the
+        *            body markup should only contain raw markup, which is 
ignored (removed), but no
+        *            Wicket Component. With Border components, the body markup 
will be associated with
+        *            the Body Component.
         */
        public PanelMarkupSourcingStrategy(final String wicketTagName,
                final boolean allowWicketComponentsInBodyMarkup)
@@ -61,10 +61,10 @@ public class PanelMarkupSourcingStrategy
         * Constructor.
         * 
         * @param allowWicketComponentsInBodyMarkup
-        *            False for Panel and true for Border components. If Panel 
than the body markup
-        *            should only contain raw markup, which is ignored 
(removed), but no Wicket
-        *            Component. With Border components, the body markup will 
be associated with the
-        *            Body Component.
+        *            {@code false} for Panel and {@code true} for Border 
components. If Panel then the
+        *            body markup should only contain raw markup, which is 
ignored (removed), but no
+        *            Wicket Component. With Border components, the body markup 
will be associated with
+        *            the Body Component.
         */
        public PanelMarkupSourcingStrategy(final boolean 
allowWicketComponentsInBodyMarkup)
        {


Reply via email to