From 83f5babf5d52a21f856ad1ed00919421d7fff073 Mon Sep 17 00:00:00 2001 From: mohit6b Date: Tue, 10 Sep 2024 14:38:15 +0530 Subject: [PATCH] fix: documentation fixes --- docs/quick-start/developers/expense-tracker/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/quick-start/developers/expense-tracker/index.md b/docs/quick-start/developers/expense-tracker/index.md index e7b6072..07b5694 100644 --- a/docs/quick-start/developers/expense-tracker/index.md +++ b/docs/quick-start/developers/expense-tracker/index.md @@ -128,7 +128,7 @@ message ExpenseList { #### Define Contract States -The implementation of the Expense Tracker app state inside file `src/ExpenseTrackerState.cs` is as follows: +The implementation of the Expense Tracker smart contract state inside file `src/ExpenseTrackerState.cs` is as follows: ```csharp title="src/ExpenseTrackerState.cs" using AElf.Sdk.CSharp.State; @@ -148,7 +148,7 @@ namespace AElf.Contracts.ExpenseTracker } ``` -- The `State.cs` file in an aelf blockchain smart contract holds the variables that store the contract's data, making sure this data is saved and accessible whenever the contract needs it. +- The `State.cs` file in the aelf blockchain smart contract holds the variables that store the contract's data, making sure this data is saved and accessible whenever the contract needs it. #### Implement Expense Tracker Smart Contract