diff options
-rw-r--r-- | lib/chef/win32/security/sid.rb | 6 |
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 # |