Skip to content
This repository was archived by the owner on Dec 12, 2024. It is now read-only.

Commit 747b3c1

Browse files
authored
fix: typo in contract constants example (#239)
1 parent 3a4a064 commit 747b3c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pages/book/contracts.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const GlobalConst1: Int = 1000 + ton("42") + pow(10, 9);
7272
7373
contract Example {
7474
// contract constants are also calculated in compile-time and cannot change
75-
const ContractConst1: Int = 2000 + ton("43") pow(10, 9);
75+
const ContractConst1: Int = 2000 + ton("43") + pow(10, 9);
7676
7777
// contract constants can be an easy alternative to enums
7878
const StateUnpaid: Int = 0;

0 commit comments

Comments
 (0)