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 typo #312

Merged
merged 1 commit into from
Jun 5, 2024
Merged
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 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
Loading