From 2c4c747bcec4a9c6ee14495a609ddfb943be4c0e Mon Sep 17 00:00:00 2001 From: Peter Dannemann Date: Tue, 12 Dec 2023 15:18:59 -0500 Subject: [PATCH] fix grammar --- README.md | 2 +- pkg/create/acl.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7a408a3f..a1cd9279 100644 --- a/README.md +++ b/README.md @@ -492,7 +492,7 @@ The `apply` subcommand can make changes, but under the following conditions: The `reset-offsets` command can also make changes in the cluster and should be used carefully. The `create` command can be used to create new resources in the cluster. It cannot be used with -mutuable resources. +mutable resources. ### Idempotency diff --git a/pkg/create/acl.go b/pkg/create/acl.go index 882524c7..ddf488e0 100644 --- a/pkg/create/acl.go +++ b/pkg/create/acl.go @@ -61,7 +61,7 @@ func (a *ACLCreator) Create(ctx context.Context) error { return err } - log.Info("Checking if ACLs already exists...") + log.Info("Checking if ACLs already exist...") acls := a.aclConfig.ToNewACLEntries() @@ -110,7 +110,7 @@ func (a *ACLCreator) Create(ctx context.Context) error { } log.Infof( - "It looks like these ACLs doesn't already exists. Will create them with this config:\n%s", + "It looks like these ACLs don't already exist. Will create them with this config:\n%s", formatNewACLsConfig(newACLs), )