Skip to content

Commit fa18617

Browse files
committed
chore: fixed typo
1 parent 534aba6 commit fa18617

File tree

2 files changed

+2
-2
lines changed
  • lms/djangoapps/course_api
  • openedx/core/djangoapps/user_authn/views

2 files changed

+2
-2
lines changed

lms/djangoapps/course_api/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ class LazyPageNumberPagination(NamespacedPageNumberPagination):
172172
173173
The paginator cache uses ``@cached_property`` to cache the property values for
174174
count and num_pages. It assumes these won't change, but in the case of a
175-
LazySquence, its count gets updated as we move through it. This class clears
175+
LazySequence, its count gets updated as we move through it. This class clears
176176
the cached property values before reporting results so they will be recalculated.
177177
178178
"""

openedx/core/djangoapps/user_authn/views/login.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ def _enforce_password_policy_compliance(request, user): # lint-amnesty, pylint:
195195
# Allow login, but warn the user that they will be required to reset their password soon.
196196
PageLevelMessages.register_warning_message(request, HTML(str(e)))
197197
except password_policy_compliance.NonCompliantPasswordException as e:
198-
# Increment the lockout counter to safguard from further brute force requests
198+
# Increment the lockout counter to safeguard from further brute force requests
199199
# if user's password has been compromised.
200200
if LoginFailures.is_feature_enabled():
201201
LoginFailures.increment_lockout_counter(user)

0 commit comments

Comments
 (0)