From eed522830f8f202ab50c62cc8c84ce043cd87b72 Mon Sep 17 00:00:00 2001 From: Victor Silva Date: Mon, 26 Jul 2021 11:18:26 -0300 Subject: [PATCH] Fix typo in docs --- docs/user-guide/basics/enums.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/basics/enums.md b/docs/user-guide/basics/enums.md index 36b3306b..ff79e79c 100644 --- a/docs/user-guide/basics/enums.md +++ b/docs/user-guide/basics/enums.md @@ -25,7 +25,7 @@ class MyEnum(str, Enum): One nuisance with this approach is that if you rename one of the enum values (for example, using an IDE), you can end up with the name and value differing, which may lead to confusing errors. -For example, if you refactored the above as follows (forgetting to çhange the associated values), you'll get +For example, if you refactored the above as follows (forgetting to change the associated values), you'll get pydantic parsing errors if you use the new *names* instead of the values in JSON bodies: ```python