From abf5e6dbfa6891a68945c86b7806096e7e9b7340 Mon Sep 17 00:00:00 2001 From: RPing Date: Mon, 28 Nov 2022 14:02:49 +0800 Subject: [PATCH] fix typo --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index e154392..dcb3f30 100644 --- a/README.rst +++ b/README.rst @@ -69,7 +69,7 @@ Casting nested types: .. code-block:: python # Environment variable: FOO=1,2,3 - foo = env('FOO'), subcast=int) + foo = env('FOO', subcast=int) # OR: foo = env('FOO', cast=list, subcast=int) # Note that there is no way to implicitly call subcast. assert foo == [1, 2, 3]