Fixed typos across the codebase (can not, cannot)

This commit is contained in:
Denis Arh
2021-03-17 17:25:05 +01:00
parent a848c7d0b8
commit 79ed77a379
94 changed files with 117 additions and 118 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ func ConnectInMemoryWithDebug(ctx context.Context) (s store.Storer, err error) {
func (s *Store) Upgrade(ctx context.Context, log *zap.Logger) (err error) {
if err = (&rdbms.Schema{}).Upgrade(ctx, NewUpgrader(log, s)); err != nil {
return fmt.Errorf("can not upgrade sqlite schema: %w", err)
return fmt.Errorf("cannot upgrade sqlite schema: %w", err)
}
return nil