From b9e151199ad6de290c21497aa7eac5622020ad4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Lafr=C3=A9choux?= Date: Thu, 16 Jun 2022 10:36:20 +0200 Subject: [PATCH] Fix get_declared_fields docstring --- src/marshmallow/schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/marshmallow/schema.py b/src/marshmallow/schema.py index 00e697e16..92152696f 100644 --- a/src/marshmallow/schema.py +++ b/src/marshmallow/schema.py @@ -142,7 +142,7 @@ def get_declared_fields( :param cls_fields: The fields declared on the class, including those added by the ``include`` class Meta option. :param inherited_fields: Inherited fields. - :param dict_class: Either `dict` or `OrderedDict`, depending on the whether + :param dict_cls: Either `dict` or `OrderedDict`, depending on whether the user specified `ordered=True`. """ return dict_cls(inherited_fields + cls_fields)