Skip to content

Commit

Permalink
fix: documentation fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mohit6b committed Sep 10, 2024
1 parent 0a9e879 commit 83f5bab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/quick-start/developers/expense-tracker/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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

Expand Down

0 comments on commit 83f5bab

Please sign in to comment.