Skip to content

Commit 3eade5a

Browse files
authored
Merge pull request #5285 from minusf/master
typo: may -> many
2 parents 2d4226c + 9ec8914 commit 3eade5a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rest_framework/exceptions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ def __init__(self, detail, code=None):
129129
if code is None:
130130
code = self.default_code
131131

132-
# For validation failures, we may collect may errors together, so the
133-
# details should always be coerced to a list if not already.
132+
# For validation failures, we may collect many errors together,
133+
# so the details should always be coerced to a list if not already.
134134
if not isinstance(detail, dict) and not isinstance(detail, list):
135135
detail = [detail]
136136

0 commit comments

Comments
 (0)