channeldb/db: lower-case ErrDryRunMigrationOk message

This commit is contained in:
Conner Fromknecht
2020-05-27 22:42:22 -07:00
parent 24c865450a
commit 66652ec4bc

View File

@@ -29,7 +29,7 @@ const (
var (
// ErrDryRunMigrationOK signals that a migration executed successful,
// but we intentionally did not commit the result.
ErrDryRunMigrationOK = errors.New("Dry run migration successful")
ErrDryRunMigrationOK = errors.New("dry run migration successful")
)
// migration is a function which takes a prior outdated version of the database