From beb957382d0ab9025d095756655edaa3356bf207 Mon Sep 17 00:00:00 2001 From: Rahul Jha Date: Thu, 13 Jan 2022 15:33:09 +0530 Subject: [PATCH] Highlight .get in backticks When I first read through the documentation twice, it took me two tries and looking very hard to find out the difference b/w the two. The background highlight using backticks would be helpful in this case. --- docs/types/enums.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/types/enums.rst b/docs/types/enums.rst index a3215cad..b9ac5333 100644 --- a/docs/types/enums.rst +++ b/docs/types/enums.rst @@ -86,7 +86,7 @@ In the Python ``Enum`` implementation you can access a member by initing the Enu assert Color(1) == Color.RED -However, in Graphene ``Enum`` you need to call get to have the same effect: +However, in Graphene ``Enum`` you need to call `.get` to have the same effect: .. code:: python