From 073421ad06d2289e1d58a7dc29e54238e7836a25 Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Tue, 29 Oct 2024 16:09:42 -0700 Subject: [PATCH] Update docs/spec/enums.rst --- docs/spec/enums.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/spec/enums.rst b/docs/spec/enums.rst index ca738e3f..52e81ed2 100644 --- a/docs/spec/enums.rst +++ b/docs/spec/enums.rst @@ -124,7 +124,7 @@ statically in cases where dynamic values are used. species: str # Non-member attribute CAT = 1 # Member attribute with known value and type - DOG = cast(str, ...) # Member attribute with unknown value and known type + DOG = cast(int, ...) # Member attribute with unknown value and known type BIRD = ... # Member attribute with unknown value and type * Members defined within an enum class should not include explicit type