Skip to content

Commit 5f28073

Browse files
authored
correction mdx (#258)
2 parents ad32f0e + 3a5cc7e commit 5f28073

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/pages/core/architecture/semantics.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ contract and its environment.
1010
## Definitions
1111

1212
**Contract** is a [WebAssembly](https://webassembly.org/) code stored in the blockchain's state.
13-
This has no state except that which is contained in the binary code (eg. static constants).
13+
This has no state except that which is contained in the binary code (e.g. static constants).
1414

1515
**Instance** refers to a specific instantiation of a contract. It includes a reference to the
1616
contract's binary as well as a state unique to the instance, which is initialized upon its creation.

src/pages/core/entrypoints/execute.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import { Callout } from "nextra/components";
99
Execute pretty much does what it says on the tin: It executes some routine in your contract after a
1010
remote (either another contract or some client) sent a message.
1111

12-
This function is called when some wants you to, for example, increment a counter or add a user to a
13-
lottery. Anything that might modify the state of the contract.
12+
This function is called when someone wants you to, for example, increment a counter or add a user to
13+
a lottery. Anything that might modify the state of the contract.
1414

1515
## Definition
1616

src/pages/sylvia.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ contract is a set of traits you implement on your contract type.
2020

2121
The framework generates things like entry point structures, functions dispatching the messages, or
2222
even helpers for [`MultiTest`](../cw-multi-test). It allows for better control of interfaces,
23-
including validating their completeness in compile time.
23+
including validating their completeness at compile time.
2424

2525
Sylvia consists of two crates:
2626

src/pages/tutorial.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
This module is a collection of guides for creating CosmWasm smart contracts. It will lead you step
44
by step, and explain relevant topics from the easiest to the trickier ones.
55

6-
The point of these tutorials is not only to tell you about smart contracts API but also to show you
6+
The point of these tutorials is not only to tell you about smart contract API but also to show you
77
how to write contracts in a clean and maintainable way. We will show you patterns that CosmWasm
88
creators established and encourage you to use.

0 commit comments

Comments
 (0)