Skip to content

Commit

Permalink
JavaDoc fixes
Browse files Browse the repository at this point in the history
Works around a weird CI misbehavior...
  • Loading branch information
shai-almog committed Jun 14, 2024
1 parent 2f463ff commit fd6752a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CodenameOne/src/com/codename1/ui/Form.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
*
* <p>Form contains a title bar area which in newer application is replaced by the {@link Toolbar}.
* Calling {@link #add(com.codename1.ui.Component)} or all similar methods on the {@code Form}
* delegates to the contenPane so calling {@code form.add(cmp)} is equivalent to
* delegates to the contentPane so calling {@code form.add(cmp)} is equivalent to
* {@code form.getContentPane().add(cmp)}. Normally this shouldn't matter, however in some cases such as
* animation we need to use the content pane directly e.g. {@code form.getContentPane().animateLayout(200)}
* will work whereas {@code form.animateLayout(200)} will fail. </p>
Expand Down Expand Up @@ -122,7 +122,7 @@ public class Form extends Container {
*/
private Transition transitionInAnimator;
/**
* This member allows us to define a an animation that will draw the transition for
* This member allows us to define an animation that will draw the transition for
* exiting this form. A transition is an animation that would occur when
* switching from one form to another.
*/
Expand Down

0 comments on commit fd6752a

Please sign in to comment.