From 53e2c5e0f08a7558faecf8ec08ce96d61644bf8b Mon Sep 17 00:00:00 2001
From: Fiona Neill <fneill@gitlab.com>
Date: Thu, 5 May 2022 11:32:16 +0000
Subject: [PATCH] Improve info text

---
 app/views/admin/application_settings/_note_limits.html.haml     | 2 +-
 .../admin/application_settings/_users_api_limits.html.haml      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app/views/admin/application_settings/_note_limits.html.haml b/app/views/admin/application_settings/_note_limits.html.haml
index 849f06eb192c..40760b3c45e1 100644
--- a/app/views/admin/application_settings/_note_limits.html.haml
+++ b/app/views/admin/application_settings/_note_limits.html.haml
@@ -9,7 +9,7 @@
       = f.label :notes_create_limit_allowlist, _('Users to exclude from the rate limit'), class: 'label-bold'
       = f.text_area :notes_create_limit_allowlist_raw, class: 'form-control gl-form-input', rows: 5, aria: { describedBy: 'note-create-limits-allowlist-field-description' }
       .form-text.text-muted{ id: 'note-create-limits-allowlist-field-description' }
-        = _('List of users allowed to exceed the rate limit. Example: username1, username2')
+        = _('List of users who are allowed to exceed the rate limit. Example: username1, username2')
 
 
   = f.submit _('Save changes'), class: "gl-button btn btn-confirm", data: { qa_selector: 'save_changes_button' }
diff --git a/app/views/admin/application_settings/_users_api_limits.html.haml b/app/views/admin/application_settings/_users_api_limits.html.haml
index 207dd8e47dbb..3918c76b12c3 100644
--- a/app/views/admin/application_settings/_users_api_limits.html.haml
+++ b/app/views/admin/application_settings/_users_api_limits.html.haml
@@ -9,6 +9,6 @@
       = f.label :users_get_by_id_limit_allowlist_raw, _('Users to exclude from the rate limit'), class: 'label-bold'
       = f.text_area :users_get_by_id_limit_allowlist_raw, class: 'form-control gl-form-input', rows: 5, aria: { describedBy: 'users-api-limit-users-allowlist-field-description' }
       .form-text.text-muted{ id: 'users-api-limit-users-allowlist-field-description' }
-        = _('List of users allowed to exceed the rate limit. Example: username1, username2')
+        = _('List of users who are allowed to exceed the rate limit. Example: username1, username2')
 
   = f.submit _('Save changes'), class: "gl-button btn btn-confirm", data: { qa_selector: 'save_changes_button' }
-- 
GitLab