From 54dff5cc4d9af78a190ff0b71e9f0e5487e2d683 Mon Sep 17 00:00:00 2001
From: Jared Scheib <jared.scheib@gmail.com>
Date: Tue, 24 Oct 2017 15:09:37 -0700
Subject: [PATCH] Clean up plurals in func comments

Signed-off-by: Michael de Sa <mjdesa@gmail.com>
---
 bolt/organization_users.go | 4 ++--
 bolt/users.go              | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/bolt/organization_users.go b/bolt/organization_users.go
index f7d86487d7..96e3135635 100644
--- a/bolt/organization_users.go
+++ b/bolt/organization_users.go
@@ -79,7 +79,7 @@ func (s *OrganizationUsersStore) Get(ctx context.Context, q chronograf.UserQuery
 	return usr, nil
 }
 
-// Add a new Users in the OrganizationUsersStore.
+// Add a new User to the OrganizationUsersStore.
 func (s *OrganizationUsersStore) Add(ctx context.Context, u *chronograf.User) (*chronograf.User, error) {
 	orgID, err := validOrganization(ctx)
 	if err != nil {
@@ -107,7 +107,7 @@ func (s *OrganizationUsersStore) Add(ctx context.Context, u *chronograf.User) (*
 	return u, nil
 }
 
-// Delete the users from the OrganizationUsersStore
+// Delete a user from the OrganizationUsersStore
 func (s *OrganizationUsersStore) Delete(ctx context.Context, usr *chronograf.User) error {
 	orgID, err := validOrganization(ctx)
 	if err != nil {
diff --git a/bolt/users.go b/bolt/users.go
index feadb60c39..d0e136a641 100644
--- a/bolt/users.go
+++ b/bolt/users.go
@@ -82,7 +82,7 @@ func (s *UsersStore) Get(ctx context.Context, q chronograf.UserQuery) (*chronogr
 	return nil, fmt.Errorf("must specify either ID, or Name, Provider, and Scheme in UserQuery")
 }
 
-// Add a new Users in the UsersStore.
+// Add a new User to the UsersStore.
 func (s *UsersStore) Add(ctx context.Context, u *chronograf.User) (*chronograf.User, error) {
 	if err := s.client.db.Update(func(tx *bolt.Tx) error {
 		b := tx.Bucket(UsersBucket)
@@ -104,7 +104,7 @@ func (s *UsersStore) Add(ctx context.Context, u *chronograf.User) (*chronograf.U
 	return u, nil
 }
 
-// Delete the users from the UsersStore
+// Delete a user from the UsersStore
 func (s *UsersStore) Delete(ctx context.Context, usr *chronograf.User) error {
 	_, err := s.get(ctx, usr.ID)
 	if err != nil {