From b0285c142b5aa3fe5735eaf54624f46726286120 Mon Sep 17 00:00:00 2001 From: Troy Sankey Date: Wed, 29 Jan 2020 16:25:23 -0500 Subject: [PATCH] Fix typo in comment --- openedx/features/course_duration_limits/access.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openedx/features/course_duration_limits/access.py b/openedx/features/course_duration_limits/access.py index 4a393a99e8..1b5ed1323b 100644 --- a/openedx/features/course_duration_limits/access.py +++ b/openedx/features/course_duration_limits/access.py @@ -110,7 +110,7 @@ def get_user_course_expiration_date(user, course): # for most people. Using the schedule date will provide flexibility to deal with # more complex business rules in the future. content_availability_date = enrollment.schedule.start_date - # We have anecdotally observed a case where the schedule.start was + # We have anecdotally observed a case where the schedule.start_date was # equal to the course start, but should have been equal to the enrollment start # https://openedx.atlassian.net/browse/PROD-58 # This section is meant to address that case