Skip to content

Commit

Permalink
POD formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Jordan committed Feb 24, 2024
1 parent 2426c21 commit e703f45
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions macros/parsers/parserPopUp.pl
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ =head1 DESCRIPTION
To create a PopUp, DropDown, or DropDownTF object, use
$popup = PopUp([choices,...],correct,options);
$dropdown = DropDown([choices,...],correct,options);
$truefalse = DropDownTF(correct,options);
$popup = PopUp([ choices, ... ], correct, options);
$dropdown = DropDown([ choices, ... ], correct, options);
$truefalse = DropDownTF(correct, options);
where "choices" are the items in the drop-down list, "correct" is the
the correct answer for the group (or its index, with 0 being the
Expand Down Expand Up @@ -69,13 +69,13 @@ =head1 DESCRIPTION
brackets. For example
$dropdown = DropDown(
[
"First Item",
["Random 1","Random 2","Random 3"],
"Last Item"
],
"Random 3"
);
[
"First Item",
[ "Random 1", "Random 2", "Random 3" ],
"Last Item"
],
"Random 3"
);
will make a list of options that has the first item always on top,
the next three ordered randomly, and the last item always on the
Expand Down

0 comments on commit e703f45

Please sign in to comment.