Skip to content

Commit 2a8a4e5

Browse files
committed
canonize docs
1 parent e8fd8cd commit 2a8a4e5

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# RecursiveArrayTools.jl
22

33
[![Join the chat at https://julialang.zulipchat.com #sciml-bridged](https://img.shields.io/static/v1?label=Zulip&message=chat&color=9558b2&labelColor=389826)](https://julialang.zulipchat.com/#narrow/stream/279055-sciml-bridged)
4-
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://recursivearraytools.sciml.ai/stable/)
5-
[![Global Docs](https://img.shields.io/badge/docs-SciML-blue.svg)](https://docs.sciml.ai/dev/modules/RecursiveArrayTools/)
4+
[![Global Docs](https://img.shields.io/badge/docs-SciML-blue.svg)](https://docs.sciml.ai/RecursiveArrayTools/stable/)
65

76
[![codecov](https://codecov.io/gh/SciML/RecursiveArrayTools.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/SciML/RecursiveArrayTools.jl)
87
[![Build Status](https://github.com/SciML/RecursiveArrayTools.jl/workflows/CI/badge.svg)](https://github.com/SciML/RecursiveArrayTools.jl/actions?query=workflow%3ACI)
@@ -20,8 +19,8 @@ arrays of arrays.
2019
## Tutorials and Documentation
2120

2221
For information on using the package,
23-
[see the stable documentation](https://recursivearraytools.sciml.ai/stable/). Use the
24-
[in-development documentation](https://recursivearraytools.sciml.ai/dev/) for the version of
22+
[see the stable documentation](https://docs.sciml.ai/RecursiveArrayTools/stable/). Use the
23+
[in-development documentation](https://docs.sciml.ai/RecursiveArrayTools/dev/) for the version of
2524
the documentation, which contains the unreleased features.
2625

2726
## Example

docs/make.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ makedocs(
99
clean=true,doctest=false,
1010
format = Documenter.HTML(analytics = "UA-90474609-3",
1111
assets = ["assets/favicon.ico"],
12-
canonical="https://recursivearraytools.sciml.ai/stable/"),
12+
canonical="https://docs.sciml.ai/RecursiveArrayTools/stable/"),
1313
pages=pages
1414
)
1515

src/array_partition.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ However, broadcast is overloaded to loop in an efficient manner, meaning that
1010
do not match types. A full array interface is included for completeness, which
1111
allows this array type to be used in place of a standard array where
1212
such a type stable broadcast may be needed. One example is in heterogeneous
13-
differential equations for [DifferentialEquations.jl](https://github.com/JuliaDiffEq/DifferentialEquations.jl).
13+
differential equations for [DifferentialEquations.jl](https://docs.sciml.ai/DiffEqDocs/stable/).
1414
1515
An `ArrayPartition` acts like a single array. `A[i]` indexes through the first
1616
array, then the second, etc., all linearly. But `A.x` is where the arrays are stored.

0 commit comments

Comments
 (0)