diff options
-rwxr-xr-x | GradeBook_lib.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/GradeBook_lib.tcl b/GradeBook_lib.tcl index 6a1d3a5..35b9a2b 100755 --- a/GradeBook_lib.tcl +++ b/GradeBook_lib.tcl @@ -27,7 +27,7 @@ proc getGradingWeights { } { Quiz .10 \ LabReport .25 \ Participation .05 \ - Midterm .20 \ + MidTerm .20 \ Final .25 \ ] } @@ -198,7 +198,7 @@ proc calculteWeightedTotals { } { foreach {category weight} [getGradingWeights] { set max_weighted_sum [ expr {$max_weighted_sum +$weight} ] } - UpdateColValue4UserNameNonWeb $grand_total_col_name _Max_Points_ $max_weighted_sum + UpdateColValue4UserNameNonWeb $grand_total_col_name _Max_Points_ $max_weighted_sum } proc grade_Category2html_name { category } { |