From a5be642f7b704c643774cc8c274863b1dbc60125 Mon Sep 17 00:00:00 2001 From: Ezekiel Victor <102771161+McEazy2700@users.noreply.github.com> Date: Tue, 7 Nov 2023 17:26:03 +0100 Subject: [PATCH] fix Global.current_application_address docs typo (#711) --- pyteal/ast/global_.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyteal/ast/global_.py b/pyteal/ast/global_.py index 1ed4c313a..bb85f2fa7 100644 --- a/pyteal/ast/global_.py +++ b/pyteal/ast/global_.py @@ -120,7 +120,7 @@ def creator_address(cls) -> "Global": @classmethod def current_application_address(cls) -> "Global": - """Get the address of that the current application controls. + """Get the address that the current application controls. Fails during Signature mode. Requires program version 5 or higher.""" return cls(GlobalField.current_app_address)