Skip to content

Commit fd6752a

Browse files
committed
JavaDoc fixes
Works around a weird CI misbehavior...
1 parent 2f463ff commit fd6752a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CodenameOne/src/com/codename1/ui/Form.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
*
6161
* <p>Form contains a title bar area which in newer application is replaced by the {@link Toolbar}.
6262
* Calling {@link #add(com.codename1.ui.Component)} or all similar methods on the {@code Form}
63-
* delegates to the contenPane so calling {@code form.add(cmp)} is equivalent to
63+
* delegates to the contentPane so calling {@code form.add(cmp)} is equivalent to
6464
* {@code form.getContentPane().add(cmp)}. Normally this shouldn't matter, however in some cases such as
6565
* animation we need to use the content pane directly e.g. {@code form.getContentPane().animateLayout(200)}
6666
* will work whereas {@code form.animateLayout(200)} will fail. </p>
@@ -122,7 +122,7 @@ public class Form extends Container {
122122
*/
123123
private Transition transitionInAnimator;
124124
/**
125-
* This member allows us to define a an animation that will draw the transition for
125+
* This member allows us to define an animation that will draw the transition for
126126
* exiting this form. A transition is an animation that would occur when
127127
* switching from one form to another.
128128
*/

0 commit comments

Comments
 (0)