Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Typos in Documentation #211

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/ibc/Staking.md
Original file line number Diff line number Diff line change
Expand Up @@ -259,4 +259,4 @@ do_stake();

### Error correction

**TODO**: Ideas about using values in success ACKs to double check the state matches expectations and flag possible errors.
**TODO**: Ideas about using values in success ACKs to double-check the state matches expectations and flag possible errors.
2 changes: 1 addition & 1 deletion docs/provider/Provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ After the Consumer side is instantiated(See [Consumer Setup](../consumer/Consume
we need to instantiate the contracts on the Provider side.

The Vault contract is instantiated with the code id of the Local Staking contract,
and a initialization message for it which includes the code id of the Native Staking Proxy contract,
and an initialization message for it which includes the code id of the Native Staking Proxy contract,
and a max slashing setting for local staking.
It also requires the local denom, which is the denom of the native staking token on the Provider chain.

Expand Down
2 changes: 1 addition & 1 deletion packages/apis/src/price_feed_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use sylvia::types::{QueryCtx, SudoCtx};
use sylvia::{interface, schemars};

/// This is a common interface to any price feed provider.
/// It may be a minimal example with a single price set by an governance vote,
/// It may be a minimal example with a single price set by a governance vote,
/// pull data from TWAP of an on-chain DEX, get remote TWAP data via IBC,
/// or use some off-chain oracle system.
///
Expand Down