From 7f094cbafb9faec4b088df7413bc5df7bacfb9c6 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Sat, 5 Oct 2019 14:31:08 -0400 Subject: [PATCH] [F] Fix typo: should be 'TOTAL_MEAN' instead of 'TOTAL_AVERAGE' --- src/components/app/app.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/app/app.ts b/src/components/app/app.ts index dde1918..f4cc24a 100644 --- a/src/components/app/app.ts +++ b/src/components/app/app.ts @@ -188,7 +188,7 @@ export default class App extends Vue } /** - * Check the courses' grading algorithms. (Total-average or percent-type) + * Check the courses' grading algorithms. (Total-mean or percent-type) */ private checkGradingAlgorithms() { @@ -198,7 +198,7 @@ export default class App extends Vue // Check if total-average grade is the same with percent-type grade if (course.numericGrade == GPAUtils.getTotalMeanAverage(course)) { - course.grading = {method: 'TOTAL_AVERAGE', weightingMap: {}}; + course.grading = {method: 'TOTAL_MEAN', weightingMap: {}}; } else {