summaryrefslogtreecommitdiffstats
path: root/Doc/library/bisect.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/bisect.rst')
-rw-r--r--Doc/library/bisect.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/bisect.rst b/Doc/library/bisect.rst
index 7856bf6..b85564f 100644
--- a/Doc/library/bisect.rst
+++ b/Doc/library/bisect.rst
@@ -127,7 +127,7 @@ thoughts in mind:
.. seealso::
* `Sorted Collections
- <http://www.grantjenks.com/docs/sortedcollections/>`_ is a high performance
+ <https://grantjenks.com/docs/sortedcollections/>`_ is a high performance
module that uses *bisect* to managed sorted collections of data.
* The `SortedCollection recipe