fix(docs,code): correct spelling and grammar across comments, tests, and documentation (#25172)

Co-authored-by: Alex | Interchain Labs <alex@interchainlabs.io>
This commit is contained in:
Marco
2025-08-14 19:35:04 +00:00
committed by GitHub
co-authored by Alex | Interchain Labs
parent 20341adf66
commit 8a9467ccdd
16 changed files with 26 additions and 26 deletions
+2 -2
View File
@@ -50,7 +50,7 @@ func Test_runRenameCmd(t *testing.T) {
cmd.SetArgs([]string{fakeKeyName1, invalidName, fmt.Sprintf("--%s=%s", flags.FlagKeyringDir, kbHome)})
require.ErrorContains(t, cmd.ExecuteContext(ctx), "the new name cannot be empty or consist solely of whitespace")
// rename a key 'blah' which doesnt exist
// rename a key 'blah' which doesn't exist
cmd.SetArgs([]string{"blah", "blaah", fmt.Sprintf("--%s=%s", flags.FlagKeyringDir, kbHome)})
err = cmd.ExecuteContext(ctx)
require.Error(t, err)
@@ -100,7 +100,7 @@ func Test_runRenameCmd(t *testing.T) {
require.NoError(t, err)
require.Equal(t, oldAddr, renamedAddr)
// try to rename key1 but it doesnt exist anymore so error
// try to rename key1 but it doesn't exist anymore so error
cmd.SetArgs([]string{
fakeKeyName1,
fakeKeyName2,