From cafa579307dfd5ff9a975fae79af42d59dcdf9e9 Mon Sep 17 00:00:00 2001 From: Dmitry <98899785+mdqst@users.noreply.github.com> Date: Mon, 9 Dec 2024 03:40:44 +0300 Subject: [PATCH] fix: Fix incorrect syntax in struct declaration (#169) --- src/developers/advanced_topics/contract_finalize.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/developers/advanced_topics/contract_finalize.md b/src/developers/advanced_topics/contract_finalize.md index d22ea2e..c704e38 100644 --- a/src/developers/advanced_topics/contract_finalize.md +++ b/src/developers/advanced_topics/contract_finalize.md @@ -20,9 +20,9 @@ cross-application call with `Operation::EndSession` before the transaction ends. ```rust,ignore pub struct MyContract { - state: MyState; - runtime: ContractRuntime; - active_sessions: HashSet; + state: MyState, + runtime: ContractRuntime, + active_sessions: HashSet, } impl Contract for MyContract {