diff --git a/README.md b/README.md index fac2953..0967787 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Try.jl: zero-overhead and debuggable error handling -[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://tkf.github.io/Try.jl/dev) -[![CI](https://github.com/tkf/Try.jl/actions/workflows/test.yml/badge.svg)](https://github.com/tkf/Try.jl/actions/workflows/test.yml) +[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://juliapreludes.github.io/Try.jl/dev) +[![CI](https://github.com/JuliaPreludes/Try.jl/actions/workflows/test.yml/badge.svg)](https://github.com/JuliaPreludes/Try.jl/actions/workflows/test.yml) [![Aqua QA](https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg)](https://github.com/JuliaTesting/Aqua.jl) Features: @@ -17,7 +17,7 @@ Features: For more explanation, see [Discussion](#discussion) below. -See the [Documentation](https://tkf.github.io/Try.jl/dev/) for API reference. +See the [Documentation](https://juliapreludes.github.io/Try.jl/dev/) for API reference. ## Examples @@ -67,7 +67,7 @@ julia> Try.unwrap_err(err) KeyError(:b) ``` -and [more](https://tkf.github.io/Try.jl/dev/). +and [more](https://juliapreludes.github.io/Try.jl/dev/). ### Error trace @@ -289,7 +289,7 @@ packages](#similar-packages) focusing on types and is reflected in the name of t like Julia in which high-level code should be expressible without managing types. For example, Try.jl provides [the APIs for short-circuit -evaluation](https://tkf.github.io/Try.jl/dev/#Short-circuit-evaluation) that can be used not +evaluation](https://juliapreludes.github.io/Try.jl/dev/#Short-circuit-evaluation) that can be used not only for `Union{Ok,Err}`: ```julia @@ -323,7 +323,7 @@ information about "success" and "failure." Of course, in Julia, types can be used for controlling execution efficiently and flexibly. In fact, the mechanism required for various short-circuit evaluation can be used for arbitrary user-defined types by defining [the short-circuit evaluation -interface](https://tkf.github.io/Try.jl/dev/experimental/#customize-short-circuit) +interface](https://juliapreludes.github.io/Try.jl/dev/experimental/#customize-short-circuit) (experimental). ### Dynamic returned value types for maximizing optimizability diff --git a/docs/instantiate.jl b/docs/instantiate.jl index 07743ce..206800f 100755 --- a/docs/instantiate.jl +++ b/docs/instantiate.jl @@ -14,12 +14,12 @@ Pkg.develop([ PackageSpec( name = "Try", path = dirname(@__DIR__), - # url = "https://github.com/tkf/Try.jl.git", + # url = "https://github.com/JuliaPreludes/Try.jl.git", ), PackageSpec( name = "TryExperimental", path = dirname(@__DIR__), - # url = "https://github.com/tkf/Try.jl.git", + # url = "https://github.com/JuliaPreludes/Try.jl.git", subdir = "lib/TryExperimental", ), ]) diff --git a/docs/make.jl b/docs/make.jl index 930474f..9848625 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -25,7 +25,7 @@ makedocs( ) deploydocs( - repo = "github.com/tkf/Try.jl", + repo = "github.com/JuliaPreludes/Try.jl", devbranch = "main", push_preview = true, # Ref: diff --git a/lib/TryExperimental/src/docs/@tryable.md b/lib/TryExperimental/src/docs/@tryable.md index 13a8937..761336d 100644 --- a/lib/TryExperimental/src/docs/@tryable.md +++ b/lib/TryExperimental/src/docs/@tryable.md @@ -10,7 +10,7 @@ fn(args...; kwargs...) = Err(NotImplementedError(fn, args, values(kwargs))) ``` (and auxiliary methods like [`istryable`](@ref TryExperimental.istryable)) to help the -["Easier to ask for forgiveness than permission" (EAFP)](https://github.com/tkf/Try.jl#eafp) +["Easier to ask for forgiveness than permission" (EAFP)](https://github.com/JuliaPreludes/Try.jl#eafp) approach. See also: [`istryable`](@ref TryExperimental.istryable).