summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPete Higgins <pete@peterhiggins.org>2020-05-07 13:32:14 -0700
committerPete Higgins <pete@peterhiggins.org>2020-05-13 13:41:54 -0700
commit8f27e94f0ac79d2668a283a4aa9a7c6d45a14c58 (patch)
treef3258dcb726c17c17081519cac871deb3a4a0262
parent323539b2cd00609b733cce89fc52ba149e289a8b (diff)
downloadchef-8f27e94f0ac79d2668a283a4aa9a7c6d45a14c58.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
#