Rafał Pitoń 9 лет назад
Родитель
Сommit
233b9a3035
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      docs/developers/coding_style.rst

+ 1 - 1
docs/developers/coding_style.rst

@@ -111,7 +111,7 @@ Those keys should live at the end of the fields list and be separated from other
 Nested results
 --------------
 
-Nested results should be included in view or viewset, as part of creding dict of serialized data for "Response" object::
+Nested results should be included in view or viewset, as part of creating dict of serialized data for "Response" object::
 
     data = UserSerializer(user).data
     data['post_set'] = UserPostSerializer(posts, many=True).data