From a334f14de9a016a830d2a56bd7c920bebd90d44b Mon Sep 17 00:00:00 2001 From: ToBeFree Date: Tue, 14 Sep 2021 16:46:12 +0200 Subject: [PATCH] improve grammar (#1724) --- src/ansiblelint/_internal/rules.py | 2 +- src/ansiblelint/rules/NoSameOwnerRule.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ansiblelint/_internal/rules.py b/src/ansiblelint/_internal/rules.py index 268922966c..88bbaa5294 100644 --- a/src/ansiblelint/_internal/rules.py +++ b/src/ansiblelint/_internal/rules.py @@ -103,7 +103,7 @@ class AnsibleParserErrorRule(BaseRule): id = 'parser-error' shortdesc = 'AnsibleParserError' - description = 'Ansible parser fails, this usually indicate invalid file.' + description = 'Ansible parser fails; this usually indicates an invalid file.' severity = 'VERY_HIGH' tags = ['core'] version_added = 'v5.0.0' diff --git a/src/ansiblelint/rules/NoSameOwnerRule.py b/src/ansiblelint/rules/NoSameOwnerRule.py index 87a03639ee..1296c7e488 100644 --- a/src/ansiblelint/rules/NoSameOwnerRule.py +++ b/src/ansiblelint/rules/NoSameOwnerRule.py @@ -13,7 +13,7 @@ class NoSameOwnerRule(AnsibleLintRule): id = 'no-same-owner' shortdesc = 'Owner should not be kept between different hosts' description = """ -Optional rule that hihglight dangers of assuming that user/group on the remote +Optional rule that highlights dangers of assuming that user/group on the remote machines may not exist on ansible controller or vice versa. Owner and group should not be preserved when transferring files between them.