Skip to content

Commit

Permalink
chore: fix some typos in comments
Browse files Browse the repository at this point in the history
Signed-off-by: hugehope <cmm7@sina.cn>
  • Loading branch information
hugehope committed Feb 18, 2025
1 parent 3a3af97 commit 4feba9d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/params/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ It contains the default weights used for each transaction used on the module's
simulation. These weights define the chance for a transaction to be simulated at
any gived operation.
You can repace the default values for the weights by providing a params.json
You can replace the default values for the weights by providing a params.json
file with the weights defined for each of the transaction operations:
{
Expand Down
2 changes: 1 addition & 1 deletion cmd/seid/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ type Option func(*rootOptions)

// scaffoldingOptions keeps set of options to apply scaffolding.
//
//nolint:unused // preserving this becase don't know if it is needed.
//nolint:unused // preserving this because don't know if it is needed.
type rootOptions struct{}

func (s *rootOptions) apply(options ...Option) { //nolint:unused // I figure this gets used later.
Expand Down
2 changes: 1 addition & 1 deletion wasmbinding/test/query_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ func TestWasmGetOracleTwaps(t *testing.T) {
var parsedRes2 oracletypes.QueryTwapsResponse
err = json.Unmarshal(res, &parsedRes2)
require.NoError(t, err)
// should be 100 isntead of 200 because thats the oldest data timestamp we have
// should be 100 instead of 200 because thats the oldest data timestamp we have
require.Equal(t, oracletypes.QueryTwapsResponse{OracleTwaps: oracletypes.OracleTwaps{
oracletypes.OracleTwap{Denom: oracleutils.MicroAtomDenom, Twap: sdk.NewDec(20), LookbackSeconds: 100},
}}, parsedRes2)
Expand Down

0 comments on commit 4feba9d

Please sign in to comment.