Skip to content

Commit 9ee67bb

Browse files
authored
corrects typographical error in line 118 (encode#7553)
1 parent ae64933 commit 9ee67bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rest_framework/serializers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def __init__(self, instance=None, data=empty, **kwargs):
115115
super().__init__(**kwargs)
116116

117117
def __new__(cls, *args, **kwargs):
118-
# We override this method in order to automagically create
118+
# We override this method in order to automatically create
119119
# `ListSerializer` classes instead when `many=True` is set.
120120
if kwargs.pop('many', False):
121121
return cls.many_init(*args, **kwargs)

0 commit comments

Comments
 (0)