Skip to content

Commit

Permalink
Fix typo in global_.py (#330)
Browse files Browse the repository at this point in the history
minumum -> minimum
  • Loading branch information
eltociear committed May 9, 2022
1 parent 63ad1bf commit f97e02e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyteal/ast/global_.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ def type_of(self):

@classmethod
def min_txn_fee(cls) -> "Global":
"""Get the minumum transaction fee in micro Algos."""
"""Get the minimum transaction fee in micro Algos."""
return cls(GlobalField.min_txn_fee)

@classmethod
def min_balance(cls) -> "Global":
"""Get the minumum balance in micro Algos."""
"""Get the minimum balance in micro Algos."""
return cls(GlobalField.min_balance)

@classmethod
Expand Down

0 comments on commit f97e02e

Please sign in to comment.