Skip to content

Commit a4056a9

Browse files
author
“A1-4U2T1NN”
committed
fix: removed fixes to the final 'else-if' statement
1 parent b69ab2e commit a4056a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lesson_07/conditionals/src/lesson7.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export function convertGpaToLetterGrade(gpa: number): string {
6868
return "D+";
6969
}else if(gpa >= 1.0 && gpa < 1.3){
7070
return "D";
71-
}else if(gpa < 1.0){
71+
}else {
7272
return "F";
7373
}
7474
}

0 commit comments

Comments
 (0)