Skip to content

Commit 27e8dcc

Browse files
authored
Merge pull request #148 from comfsrt/main
fix spelling issues
2 parents 7a28070 + fa161a7 commit 27e8dcc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cmd/analytics.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
func AnalyticsCommand() *cobra.Command {
1313
cmd := &cobra.Command{
1414
Use: "analytics",
15-
Short: "Configure analytics ex. enable/disable data collection",
15+
Short: "Configure analytics e.g. enable/disable data collection",
1616
DisableFlagParsing: true,
1717
SuggestionsMinimumDistance: 2,
1818
}

cmd/opinit_integration_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ func TestOPInitBotsInit(t *testing.T) {
137137
testutil.PressEnter, // press enter to confirm using the initia as da layer
138138
testutil.WaitFetching, // wait checking for the existing rollup app
139139
testutil.TypeText("1"), // type L1 start height
140-
testutil.PressEnter, // press enter to comfirm l1 start height
140+
testutil.PressEnter, // press enter to confirm l1 start height
141141
}
142142

143143
finalModel := testutil.RunProgramWithSteps(t, firstModel, steps)

common/validate.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ func ValidateDecCoin(coinStr string) (err error) {
120120

121121
func ValidateDecFromStr(str string) error {
122122
if str[0] == '-' {
123-
return fmt.Errorf("decimal string cannot be positve")
123+
return fmt.Errorf("decimal string cannot be positive")
124124
}
125125

126126
if len(str) == 0 {

0 commit comments

Comments
 (0)