summaryrefslogtreecommitdiff
path: root/docs/documentation.md
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2022-11-06 07:39:36 +0100
committerGitHub <noreply@github.com>2022-11-06 07:39:36 +0100
commitb496c55fa3b0fdd9ce955d36879d943aa00ec438 (patch)
treeaccb883491075bbec01b932f9ef067a405d589a7 /docs/documentation.md
parent6f4cf6f01e81c860ab0add4580f73e099bf8abba (diff)
parent099462d9355a3d92942b414c11e143b916b35b72 (diff)
downloadpython-decorator-git-b496c55fa3b0fdd9ce955d36879d943aa00ec438.tar.gz
Merge pull request #147 from hugovk/master
Add support for Python 3.11
Diffstat (limited to 'docs/documentation.md')
-rw-r--r--docs/documentation.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/documentation.md b/docs/documentation.md
index 10ddb5f..cc92eb9 100644
--- a/docs/documentation.md
+++ b/docs/documentation.md
@@ -4,8 +4,8 @@
|---|---|
|E-mail | michele.simionato@gmail.com|
|Version| 5.1.1 (2022-01-07)|
-|Supports| Python 3.5, 3.6, 3.7, 3.8, 3.9, 3.10|
-|Download page| http://pypi.python.org/pypi/decorator/5.1.1|
+|Supports| Python 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11|
+|Download page| https://pypi.org/project/decorator/5.1.1|
|Installation| ``pip install decorator``|
|License | BSD license|
@@ -1492,7 +1492,7 @@ with ``functools.singledispatch``, the assertion will break: ``g`` will return
will insert the ``Container`` class right before ``S``.
Notice that here I am not making any bold claim such as "the standard
-library algorithm is wrong and my algorithm is right" or viceversa. It
+library algorithm is wrong and my algorithm is right" or vice versa. It
just point out that there are some subtle differences. The only way to
understand what is really happening here is to scratch your head by
looking at the implementations. I will just notice that