summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPete Higgins <pete@peterhiggins.org>2020-05-07 13:32:14 -0700
committerTim Smith <tsmith84@gmail.com>2020-05-18 20:29:40 -0700
commita36abdaf4c6cad4df506866021ec7abb2266706b (patch)
treef2cc93ee87fa2327131085d0a62387263a98d687
parent8d214fd8d0147de464ac73e6547b4168e231ab9b (diff)
downloadchef-a36abdaf4c6cad4df506866021ec7abb2266706b.tar.gz
Replace some cyrillic characters in English words.
Signed-off-by: Pete Higgins <pete@peterhiggins.org>
-rw-r--r--lib/chef/win32/security/sid.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/win32/security/sid.rb b/lib/chef/win32/security/sid.rb
index e1727ddd3d..c89249f5a7 100644
--- a/lib/chef/win32/security/sid.rb
+++ b/lib/chef/win32/security/sid.rb
@@ -261,7 +261,7 @@ class Chef
SYSTEM_USER = SERVICE_ACCOUNT_USERS + BUILT_IN_GROUPS
- # Сheck if the user belongs to service accounts category
+ # Check if the user belongs to service accounts category
#
# @return [Boolean] True or False
#
@@ -269,7 +269,7 @@ class Chef
SERVICE_ACCOUNT_USERS.include?(user.to_s.upcase)
end
- # Сheck if the user is in builtin system group
+ # Check if the user is in builtin system group
#
# @return [Boolean] True or False
#
@@ -277,7 +277,7 @@ class Chef
BUILT_IN_GROUPS.include?(user.to_s.upcase)
end
- # Сheck if the user belongs to system users category
+ # Check if the user belongs to system users category
#
# @return [Boolean] True or False
#