Skip to content

Commit

Permalink
Merge pull request #932 from d-torrance/fix-percent
Browse files Browse the repository at this point in the history
Fix display of percent signs for hardcopies in 2 statistics problems
  • Loading branch information
drdrew42 authored May 30, 2022
2 parents 9eac6d1 + 61888a8 commit 275b80d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ $PAR
for ($i = 0; $i < 6; $i ++) {
$rel_table_row[$i] = [
$lower_class_limit[$i] . ' - ' . $upper_class_limit[$i],
ans_rule(4) . '%'];
ans_rule(4) . '$PERCENT'];
}

DataTable(
Expand All @@ -133,7 +133,7 @@ $PAR
for ($i = 0; $i < 6; $i ++) {
$cum_table_row[$i] = [
'less than ' . $class_boundary[$i],
ans_rule(4), ans_rule(4) . '%'];
ans_rule(4), ans_rule(4) . '$PERCENT'];
}

DataTable(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ $PAR
for ($i = 0; $i < 10; $i ++) {
$rel_table_row[$i] = [
$lower_class_limit[$i] . ' - ' . $upper_class_limit[$i],
ans_rule(4) . '%'];
ans_rule(4) . '$PERCENT'];
}

DataTable(
Expand All @@ -137,7 +137,7 @@ $PAR
for ($i = 0; $i < 10; $i ++) {
$cum_table_row[$i] = [
'less than ' . $class_boundary[$i],
ans_rule(4), ans_rule(4) . '%'];
ans_rule(4), ans_rule(4) . '$PERCENT'];
}

DataTable(
Expand Down

0 comments on commit 275b80d

Please sign in to comment.