summaryrefslogtreecommitdiff
path: root/markdown/__meta__.py
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2023-04-06 19:21:46 -0400
committerGitHub <noreply@github.com>2023-04-06 19:21:46 -0400
commit07b8b2c90a92c20fb0740d5527c6a219d2afb7ae (patch)
tree5f8058c02c96082ca21072698fc46a09e7c36a20 /markdown/__meta__.py
parentbe1c2839dd587a858f91c710e56667cba9f5329d (diff)
downloadpython-markdown-07b8b2c90a92c20fb0740d5527c6a219d2afb7ae.tar.gz
Use pyspelling to check spelling.
In addition to checking the spelling in our documentation, we are now also checking the spelling of the README.md and similar files as well as comments in our Python code.
Diffstat (limited to 'markdown/__meta__.py')
-rw-r--r--markdown/__meta__.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/markdown/__meta__.py b/markdown/__meta__.py
index 2914f68..4519911 100644
--- a/markdown/__meta__.py
+++ b/markdown/__meta__.py
@@ -20,12 +20,12 @@ License: BSD (see LICENSE.md for details).
"""
# __version_info__ format:
-# (major, minor, patch, dev/alpha/beta/rc/final, #)
-# (1, 1, 2, 'dev', 0) => "1.1.2.dev0"
-# (1, 1, 2, 'alpha', 1) => "1.1.2a1"
-# (1, 2, 0, 'beta', 2) => "1.2b2"
-# (1, 2, 0, 'rc', 4) => "1.2rc4"
-# (1, 2, 0, 'final', 0) => "1.2"
+# (major, minor, patch, dev/alpha/beta/rc/final, #)
+# (1, 1, 2, 'dev', 0) => "1.1.2.dev0"
+# (1, 1, 2, 'alpha', 1) => "1.1.2a1"
+# (1, 2, 0, 'beta', 2) => "1.2b2"
+# (1, 2, 0, 'rc', 4) => "1.2rc4"
+# (1, 2, 0, 'final', 0) => "1.2"
__version_info__ = (3, 4, 3, 'final', 0)