File tree Expand file tree Collapse file tree 3 files changed +13
-11
lines changed Expand file tree Collapse file tree 3 files changed +13
-11
lines changed Original file line number Diff line number Diff line change 1
1
using Documenter
2
2
3
- makedocs (
4
- warnonly = :cross_references ,
5
- sitename = " Geometric preconditioner" ,
6
- format = Documenter. HTML (
7
- prettyurls = false ,
8
- size_threshold_ignore = [" 2D-example.md" ],
9
- assets = [
3
+ makedocs (;
4
+ warnonly= :cross_references ,
5
+ sitename= " Geometric preconditioner" ,
6
+ format= Documenter. HTML (;
7
+ prettyurls= false ,
8
+ size_threshold_ignore= [" 2D-example.md" ],
9
+ assets= [
10
10
asset (" https://control-toolbox.org/assets/css/documentation.css" ),
11
11
asset (" https://control-toolbox.org/assets/js/documentation.js" ),
12
12
],
13
13
),
14
- pages = [
14
+ pages= [
15
15
" Introduction" => " index.md" ,
16
16
" Indirect shooting" => " 2D-example.md" ,
17
17
" Geometric preconditioner" => " 2D-preconditioner.md" ,
18
18
],
19
19
)
20
20
21
- deploydocs (repo = " github.com/control-toolbox/GeometricPreconditioner.jl.git" , devbranch = " main" )
21
+ deploydocs (;
22
+ repo= " github.com/control-toolbox/GeometricPreconditioner.jl.git" , devbranch= " main"
23
+ )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ using Test
4
4
5
5
#
6
6
@testset verbose = true showtiming = true " Base" begin
7
- for name ∈ (:aqua , :default )
7
+ for name in (:aqua , :default )
8
8
@testset " $(name) " begin
9
9
test_name = Symbol (:test_ , name)
10
10
include (" $(test_name) .jl" )
Original file line number Diff line number Diff line change @@ -10,4 +10,4 @@ function test_aqua()
10
10
# do not warn about ambiguities in dependencies
11
11
Aqua. test_ambiguities (GeometricPreconditioner)
12
12
end
13
- end
13
+ end
You can’t perform that action at this time.
0 commit comments