Skip to content

Commit e71bcbb

Browse files
authored
Merge pull request #1143 from rafaqz/la/fix_editdocs
fix edit link
2 parents 433bd23 + a64c16c commit e71bcbb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/src/.vitepress/config.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ export default defineConfig({
138138
},
139139
],
140140
editLink: {
141-
pattern: 'https://github.com/rafaqz/DimensionalData.jl/edit/master/docs/src/:path'
141+
pattern: 'https://github.com/rafaqz/DimensionalData.jl/edit/main/docs/src/:path'
142142
},
143143

144144
socialLinks: [

docs/src/dimensions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ val(X(1))
3030
DimensionalData.jl uses `Dimensions` everywhere:
3131

3232
- `Dimension`s are returned from `dims` to specify the names of the dimensions of an object
33-
- They can wrap [`Lookups`](@ref) to associate the lookups with those names
33+
- They can wrap [`Dimensions.Lookups`](@ref) to associate the lookups with those names
3434
- To index into these objects, they can wrap indices like `Int` or a `Selector`
3535

3636
This symmetry means we can ignore how data is organized,

docs/src/object_modification.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ dimensions into a single combined dimension with a lookup holding
7676
`Tuples` of the values of both dimensions.
7777

7878

79-
## `rebuild`
79+
## [`rebuild`](@id sec-rebuild)
8080

8181
[`rebuild`](@ref) is one of the core functions of DimensionalData.jl.
8282
Basically everything uses it somewhere. And you can too, with a few caveats.

0 commit comments

Comments
 (0)