summaryrefslogtreecommitdiff
path: root/sort/parallelquick.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2023-03-24 22:20:04 +0200
committerPaul Buetow <paul@buetow.org>2023-03-24 22:20:04 +0200
commit8f7a673fccf1343e4468bb953d93f5b1b7372f77 (patch)
treec901aa7be9d7dc5a2a4bdf043fc7320a1b600ad6 /sort/parallelquick.go
parent02384f2667a2f10c9d776d6a259701d0b6542b54 (diff)
we are on codeberg now
Diffstat (limited to 'sort/parallelquick.go')
-rw-r--r--sort/parallelquick.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/sort/parallelquick.go b/sort/parallelquick.go
index 195a2c8..ae203f2 100644
--- a/sort/parallelquick.go
+++ b/sort/parallelquick.go
@@ -3,7 +3,7 @@ package sort
import (
"sync"
- "github.com/snonux/algorithms/ds"
+ "codeberg.org/snonux/algorithms/ds"
)
func ParallelQuick(a ds.ArrayList) ds.ArrayList {