Dashboard: Spelling corrections in end-user visible dialogs (#53340)

This commit is contained in:
Alex Ratner
2022-08-09 10:19:30 +02:00
committed by GitHub
parent 592d31e617
commit fecf4c41ad
39 changed files with 53 additions and 53 deletions
@@ -60,7 +60,7 @@ func TestContactPointService(t *testing.T) {
require.Equal(t, "slack", cps[1].Type)
})
t.Run("it's possbile to use a custom uid", func(t *testing.T) {
t.Run("it's possible to use a custom uid", func(t *testing.T) {
customUID := "1337"
sut := createContactPointServiceSut(secretsService)
newCp := createTestContactPoint()
@@ -75,7 +75,7 @@ func TestContactPointService(t *testing.T) {
require.Equal(t, customUID, cps[1].UID)
})
t.Run("it's not possbile to use the same uid twice", func(t *testing.T) {
t.Run("it's not possible to use the same uid twice", func(t *testing.T) {
customUID := "1337"
sut := createContactPointServiceSut(secretsService)
newCp := createTestContactPoint()
@@ -106,7 +106,7 @@ func (provider *Provisioner) PollChanges(ctx context.Context) {
}
// GetProvisionerResolvedPath returns resolved path for the specified provisioner name. Can be used to generate
// relative path to provisioning file from it's external_id.
// relative path to provisioning file from its external_id.
func (provider *Provisioner) GetProvisionerResolvedPath(name string) string {
for _, reader := range provider.fileReaders {
if reader.Cfg.Name == name {