From be171de23e564c1adc7bdf34874e1b03c1204c3b Mon Sep 17 00:00:00 2001 From: Ritvik Nag Date: Tue, 14 Jan 2025 22:31:16 -0500 Subject: [PATCH] update docs --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index d7f9f2a..2d03c9a 100644 --- a/README.rst +++ b/README.rst @@ -36,7 +36,7 @@ for complex and *nested dataclass* models! >>> from dataclass_wizard import JSONWizard ... >>> @dataclass - ... class MyClass(JSONWizard): + ... class MyClass(JSONWizard, key_case='AUTO'): ... my_str: str | None ... is_active_tuple: tuple[bool, ...] ... list_of_int: list[int] = field(default_factory=list)