From 0a614bdd5c795d3f2f0c7fd823e8e9b950ba4025 Mon Sep 17 00:00:00 2001 From: raisin Date: Mon, 11 Mar 2024 23:37:00 +0800 Subject: [PATCH] fix: update balances to account --- documentation/leo/03_language.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/leo/03_language.md b/documentation/leo/03_language.md index d5db03f7b..21b02845e 100644 --- a/documentation/leo/03_language.md +++ b/documentation/leo/03_language.md @@ -157,7 +157,7 @@ A program scope in the sense of Leo is a collection of code (its functions) and import foo.leo; program hello.aleo { - mapping balances: address => u64; + mapping account: address => u64; record token { owner: address,