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 and spelling errors in documentation #4150

Open
wants to merge 4 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/architecture/adr-002-qgb-valset.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Finally, if there are no validator set updates for the unbonding window, the bri

### Message types

We added the following messages types:
We added the following message types:

#### Bridge Validator

Expand Down
2 changes: 1 addition & 1 deletion pkg/appconsts/global_consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
//
// They cannot change throughout the lifetime of a network.
const (
// DefaultShareVersion is the defacto share version. Use this if you are
// DefaultShareVersion is the de facto share version. Use this if you are
// unsure of which version to use.
DefaultShareVersion = share.ShareVersionZero

Expand Down
4 changes: 2 additions & 2 deletions pkg/appconsts/initial_consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
)

// The following defaults correspond to initial parameters of the network that can be changed, not via app versions
// but other means such as on-chain governance, or the nodes local config
// but other means such as on-chain governance, or the node's local config
const (
// DefaultGovMaxSquareSize is the default value for the governance modifiable
// max square size.
Expand All @@ -19,7 +19,7 @@ const (

// DefaultMinGasPrice is the default min gas price that gets set in the app.toml file.
// The min gas price acts as a filter. Transactions below that limit will not pass
// a nodes `CheckTx` and thus not be proposed by that node.
// a node's `CheckTx` and thus not be proposed by that node.
DefaultMinGasPrice = 0.002 // utia

// DefaultUnbondingTime is the default time a validator must wait
Expand Down
2 changes: 1 addition & 1 deletion pkg/da/data_availability_header_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ func Test_DAHValidateBasic(t *testing.T) {
errStr: "minimum valid DataAvailabilityHeader has at least",
},
{
name: "bash hash",
name: "bad hash",
dah: badHashDah,
expectErr: true,
errStr: "wrong hash",
Expand Down
Loading