]> git.proxmox.com Git - rustc.git/blobdiff - library/alloc/src/slice.rs
New upstream version 1.55.0+dfsg1
[rustc.git] / library / alloc / src / slice.rs
index dcd64899204925fdaed1c9cf3618c30dd13b9a70..4c8ea6902ff14eea756de30a4f409ef97173d57f 100644 (file)
@@ -1042,7 +1042,7 @@ where
 }
 
 /// This merge sort borrows some (but not all) ideas from TimSort, which is described in detail
-/// [here](http://svn.python.org/projects/python/trunk/Objects/listsort.txt).
+/// [here](https://github.com/python/cpython/blob/main/Objects/listsort.txt).
 ///
 /// The algorithm identifies strictly descending and non-descending subsequences, which are called
 /// natural runs. There is a stack of pending runs yet to be merged. Each newly found run is pushed