spelling fix

This commit is contained in:
Om Joshi
2021-10-16 20:15:36 -05:00
parent 34511ae465
commit 855c636dad
6 changed files with 13 additions and 13 deletions

View File

@@ -105,7 +105,7 @@ function buildBasicCourseInfo(row, course_name, individual) {
name,
department,
number
} = seperateCourseNameParts(course_name);
} = separateCourseNameParts(course_name);
let instructor_text = $(row).find('td[data-th="Instructor"]').text();
let has_initial = instructor_text.indexOf(',') > 0;
course_info = {
@@ -223,7 +223,7 @@ function updateTextHighlighting(tds, canHighlight, isConflict, alreadyContains,
}
return false;
}).map(function(course){
let { name, department, number} = seperateCourseNameParts(course.coursename);
let { name, department, number} = separateCourseNameParts(course.coursename);
return `${department} ${number} (${course.unique})`;
});
if(isConflict && unique_list.length){
@@ -277,7 +277,7 @@ function getDayTimeArray(row, course_info) {
}
function convertDateTimeArrToLine(date, time, place) {
let arr = seperateDays(date)
let arr = separateDays(date)
let output = prettifyDaysText(arr)
let building = place.substring(0, place.search(/\d/) - 1);
building = building ? building : "Undecided Location";