Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improve grammar #1724

Merged
merged 2 commits into from Sep 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ansiblelint/_internal/rules.py
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion src/ansiblelint/rules/NoSameOwnerRule.py
Expand Up @@ -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.

Expand Down