Skip to content

Commit 275b80d

Browse files
authored
Merge pull request #932 from d-torrance/fix-percent
Fix display of percent signs for hardcopies in 2 statistics problems
2 parents 9eac6d1 + 61888a8 commit 275b80d

File tree

2 files changed

+4
-4
lines changed
  • Contrib/Piedmont/StevensStatistics/3-StatisticalTablesAndGraphics

2 files changed

+4
-4
lines changed

Contrib/Piedmont/StevensStatistics/3-StatisticalTablesAndGraphics/3.1.1.pg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ $PAR
112112
for ($i = 0; $i < 6; $i ++) {
113113
$rel_table_row[$i] = [
114114
$lower_class_limit[$i] . ' - ' . $upper_class_limit[$i],
115-
ans_rule(4) . '%'];
115+
ans_rule(4) . '$PERCENT'];
116116
}
117117

118118
DataTable(
@@ -133,7 +133,7 @@ $PAR
133133
for ($i = 0; $i < 6; $i ++) {
134134
$cum_table_row[$i] = [
135135
'less than ' . $class_boundary[$i],
136-
ans_rule(4), ans_rule(4) . '%'];
136+
ans_rule(4), ans_rule(4) . '$PERCENT'];
137137
}
138138

139139
DataTable(

Contrib/Piedmont/StevensStatistics/3-StatisticalTablesAndGraphics/3.1.2.pg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ $PAR
116116
for ($i = 0; $i < 10; $i ++) {
117117
$rel_table_row[$i] = [
118118
$lower_class_limit[$i] . ' - ' . $upper_class_limit[$i],
119-
ans_rule(4) . '%'];
119+
ans_rule(4) . '$PERCENT'];
120120
}
121121

122122
DataTable(
@@ -137,7 +137,7 @@ $PAR
137137
for ($i = 0; $i < 10; $i ++) {
138138
$cum_table_row[$i] = [
139139
'less than ' . $class_boundary[$i],
140-
ans_rule(4), ans_rule(4) . '%'];
140+
ans_rule(4), ans_rule(4) . '$PERCENT'];
141141
}
142142

143143
DataTable(

0 commit comments

Comments
 (0)