Skip to content

Commit

Permalink
fix err msg typo
Browse files Browse the repository at this point in the history
  • Loading branch information
parkerduckworth committed May 2, 2024
1 parent 2bfb133 commit 44bc4e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion usecases/schema/class.go
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@ func validateUpdatingMT(current, update *models.Class) (enabled bool, err error)
}
}
if !enabled && schema.AutoTenantCreationEnabled(update) {
err = fmt.Errorf("can't enabled autoTenantCreation on a non-multi-tenant class")
err = fmt.Errorf("can't enable autoTenantCreation on a non-multi-tenant class")
}
return
}
Expand Down

0 comments on commit 44bc4e7

Please sign in to comment.