Skip to content

Commit e2625f6

Browse files
Copilotyebai
andcommitted
Fix docs build: add missing docstrings and deploydocs config
Co-authored-by: yebai <[email protected]>
1 parent 0f90f00 commit e2625f6

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

docs/make.jl

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ DocMeta.setdocmeta!(Bijectors, :DocTestSetup, :(using Bijectors); recursive=true
66

77
makedocs(;
88
sitename="Bijectors",
9-
format=Documenter.HTML(),
9+
format=Documenter.HTML(
10+
edit_link="main"
11+
),
1012
modules=[Bijectors],
1113
pages=[
1214
"Home" => "index.md",
@@ -16,3 +18,8 @@ makedocs(;
1618
],
1719
checkdocs=:exports,
1820
)
21+
22+
deploydocs(;
23+
repo="github.com/TuringLang/Bijectors.jl.git",
24+
devbranch="main",
25+
)

docs/src/transforms.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ Without mutation:
4444
```@docs
4545
transform
4646
logabsdetjac
47+
logabsdetjacinv
4748
```
4849

4950
```julia
@@ -87,6 +88,7 @@ Bijectors.isclosedform(t::Bijectors.Transform)
8788
Bijectors.Transform
8889
Bijectors.Bijector
8990
Bijectors.Inverse
91+
inverse
9092
```
9193

9294
## Bijectors

0 commit comments

Comments
 (0)