diff --git a/pages/book/contracts.mdx b/pages/book/contracts.mdx index 64c1cc19..0f6c9478 100644 --- a/pages/book/contracts.mdx +++ b/pages/book/contracts.mdx @@ -72,7 +72,7 @@ const GlobalConst1: Int = 1000 + ton("42") + pow(10, 9); contract Example { // contract constants are also calculated in compile-time and cannot change - const ContractConst1: Int = 2000 + ton("43") pow(10, 9); + const ContractConst1: Int = 2000 + ton("43") + pow(10, 9); // contract constants can be an easy alternative to enums const StateUnpaid: Int = 0;