From 0f51bd87a7b22b9ed0e459bf7b8d32dbf2a01bd9 Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Mon, 27 Sep 2021 02:07:06 -0400 Subject: [PATCH] Fix URLs --- README.md | 14 +++++++------- docs/make.jl | 2 +- src/utils.jl | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 6d93724..b2fb4d6 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ # ConcurrentCollections -[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://tkf.github.io/ConcurrentCollections.jl/dev/) +[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://juliaconcurrent.github.io/ConcurrentCollections.jl/dev/) ConcurrentCollections.jl provides the following lock-free collections for Julia ≥ 1.7: -* [`DualLinkedConcurrentRingQueue`](https://tkf.github.io/ConcurrentCollections.jl/dev/#ConcurrentCollections.DualLinkedConcurrentRingQueue) -* [`LinkedConcurrentRingQueue`](https://tkf.github.io/ConcurrentCollections.jl/dev/#ConcurrentCollections.LinkedConcurrentRingQueue) -* [`ConcurrentQueue`](https://tkf.github.io/ConcurrentCollections.jl/dev/#ConcurrentCollections.ConcurrentQueue) -* [`ConcurrentStack`](https://tkf.github.io/ConcurrentCollections.jl/dev/#ConcurrentCollections.ConcurrentStack) -* [`WorkStealingDeque`](https://tkf.github.io/ConcurrentCollections.jl/dev/#ConcurrentCollections.WorkStealingDeque) -* [`ConcurrentDict`](https://tkf.github.io/ConcurrentCollections.jl/dev/#ConcurrentCollections.ConcurrentDict) +* [`DualLinkedConcurrentRingQueue`](https://juliaconcurrent.github.io/ConcurrentCollections.jl/dev/#ConcurrentCollections.DualLinkedConcurrentRingQueue) +* [`LinkedConcurrentRingQueue`](https://juliaconcurrent.github.io/ConcurrentCollections.jl/dev/#ConcurrentCollections.LinkedConcurrentRingQueue) +* [`ConcurrentQueue`](https://juliaconcurrent.github.io/ConcurrentCollections.jl/dev/#ConcurrentCollections.ConcurrentQueue) +* [`ConcurrentStack`](https://juliaconcurrent.github.io/ConcurrentCollections.jl/dev/#ConcurrentCollections.ConcurrentStack) +* [`WorkStealingDeque`](https://juliaconcurrent.github.io/ConcurrentCollections.jl/dev/#ConcurrentCollections.WorkStealingDeque) +* [`ConcurrentDict`](https://juliaconcurrent.github.io/ConcurrentCollections.jl/dev/#ConcurrentCollections.ConcurrentDict) diff --git a/docs/make.jl b/docs/make.jl index 5b3eff2..a1c5c5a 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -21,6 +21,6 @@ for (root, dirs, files) in walkdir(joinpath(@__DIR__, "build")) end deploydocs( - repo = "github.com/tkf/ConcurrentCollections.jl", + repo = "github.com/JuliaConcurrent/ConcurrentCollections.jl", push_preview = true, ) diff --git a/src/utils.jl b/src/utils.jl index da3afd2..d0add22 100644 --- a/src/utils.jl +++ b/src/utils.jl @@ -102,7 +102,7 @@ end const CACHELINE_SIZE = 64 # Workaround -# https://github.com/tkf/ConcurrentCollections.jl/issues/35 +# https://github.com/JuliaconCurrent/ConcurrentCollections.jl/issues/35 # https://github.com/JuliaLang/julia/issues/42326 #= primitive type PadAfter64 448 end