From 1cef3f66fb87c42ddc6d006dc2d0743d03c61272 Mon Sep 17 00:00:00 2001 From: PavelVaskou <3635019@gmail.com> Date: Fri, 31 May 2024 17:11:04 +0300 Subject: [PATCH] Update contracts.mdx fix typo --- pages/book/contracts.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;