summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorflyingbot91 <flyingbot91@gmx.com>2021-03-11 21:48:59 +0100
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-03-12 21:06:09 +0100
commit890a9b91fbac1fbc8f40fc48a78b8cd6855dbbaa (patch)
tree4f20d6eb30cfc7838dc7b7e1eaeeb1108cb7bcfd
parent412afcdb765fe924e0af98fc08b690e384aaa4a2 (diff)
downloadpylint-git-890a9b91fbac1fbc8f40fc48a78b8cd6855dbbaa.tar.gz
Typo
-rw-r--r--doc/tutorial.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tutorial.rst b/doc/tutorial.rst
index 5482a66fa..46f6a0fe7 100644
--- a/doc/tutorial.rst
+++ b/doc/tutorial.rst
@@ -153,7 +153,7 @@ needed a bit more info. We can see the second line is: ::
"simplecaesar.py:1:0: C0114: Missing module docstring (missing-module-docstring)"
-This basically means that line 1 violates a convention ``C0111``. It's telling me I really should have a docstring. I agree, but what if I didn't fully understand what rule I violated. Knowing only that I violated a convention
+This basically means that line 1 violates a convention ``C0114``. It's telling me I really should have a docstring. I agree, but what if I didn't fully understand what rule I violated. Knowing only that I violated a convention
isn't much help if I'm a newbie. Another piece of information there is the
message symbol between parens, ``missing-module-docstring`` here.