Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
yinheli committed Jun 5, 2024
1 parent a89ea82 commit 6b040a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion db.go
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ func checkOptions(options Options) error {
if len(options.AutoMergeCronExpr) > 0 {
if _, err := cron.NewParser(cron.SecondOptional | cron.Minute | cron.Hour | cron.Dom | cron.Month | cron.Dow | cron.Descriptor).
Parse(options.AutoMergeCronExpr); err != nil {
return fmt.Errorf("databse auto merge cron expression is invalid, err: %s", err)
return fmt.Errorf("database auto merge cron expression is invalid, err: %s", err)
}
}

Expand Down
2 changes: 1 addition & 1 deletion utils/rand_kv.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ var (
letters = []byte("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")
)

// GetTestKey get formated key, for test only
// GetTestKey get formatted key, for test only
func GetTestKey(i int) []byte {
return []byte(fmt.Sprintf("rosedb-test-key-%09d", i))
}
Expand Down

0 comments on commit 6b040a7

Please sign in to comment.