summaryrefslogtreecommitdiff
path: root/doc/user_guide
diff options
context:
space:
mode:
authorR. N. West <98110034+rnwst@users.noreply.github.com>2023-02-02 14:04:03 +0000
committerGitHub <noreply@github.com>2023-02-02 14:04:03 +0000
commit9490a38b62d5c8750d74a186b644e060de8313d2 (patch)
tree5512556a6e3f281cb530f411241b06c51c285058 /doc/user_guide
parent4689b195d8539ef04fd0c30423037a5f4932a20f (diff)
downloadpylint-git-9490a38b62d5c8750d74a186b644e060de8313d2.tar.gz
Fix grammatical error in explanation of `global-statement (W0603)` (#8108)
Diffstat (limited to 'doc/user_guide')
-rw-r--r--doc/user_guide/checkers/features.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/user_guide/checkers/features.rst b/doc/user_guide/checkers/features.rst
index 579f7f987..6dfb222a8 100644
--- a/doc/user_guide/checkers/features.rst
+++ b/doc/user_guide/checkers/features.rst
@@ -1371,7 +1371,7 @@ Variables checker Messages
or a generator expression) is used outside the loop.
:global-statement (W0603): *Using the global statement*
Used when you use the "global" statement to update a global variable. Pylint
- just try to discourage this usage. That doesn't mean you cannot use it !
+ discourages its usage. That doesn't mean you cannot use it!
:global-at-module-level (W0604): *Using the global statement at the module level*
Used when you use the "global" statement at the module level since it has no
- effect
+ effect.