Rafał Pitoń 9 years ago
parent
commit
233b9a3035
1 changed files with 1 additions and 1 deletions
  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