Skip to content

Commit a1e6544

Browse files
ocotsgithub-actions[bot]
authored andcommitted
🤖 Format .jl files
1 parent 74283db commit a1e6544

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

docs/make.jl

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
11
using Documenter
22

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=[
1010
asset("https://control-toolbox.org/assets/css/documentation.css"),
1111
asset("https://control-toolbox.org/assets/js/documentation.js"),
1212
],
1313
),
14-
pages = [
14+
pages=[
1515
"Introduction" => "index.md",
1616
"Indirect shooting" => "2D-example.md",
1717
"Geometric preconditioner" => "2D-preconditioner.md",
1818
],
1919
)
2020

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+
)

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ using Test
44

55
#
66
@testset verbose = true showtiming = true "Base" begin
7-
for name (:aqua, :default)
7+
for name in (:aqua, :default)
88
@testset "$(name)" begin
99
test_name = Symbol(:test_, name)
1010
include("$(test_name).jl")

test/test_aqua.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ function test_aqua()
1010
# do not warn about ambiguities in dependencies
1111
Aqua.test_ambiguities(GeometricPreconditioner)
1212
end
13-
end
13+
end

0 commit comments

Comments
 (0)