Skip to content

Commit 08c43a0

Browse files
committed
Format files using DocumentFormat
1 parent 02f7da8 commit 08c43a0

2 files changed

Lines changed: 9 additions & 13 deletions

File tree

docs/make.jl

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
using Documenter, IteratorInterfaceExtensions
22

3-
makedocs(
4-
modules = [IteratorInterfaceExtensions],
3+
makedocs(modules = [IteratorInterfaceExtensions],
54
sitename = "IteratorInterfaceExtensions.jl",
6-
analytics="UA-132838790-1",
5+
analytics = "UA-132838790-1",
76
pages = [
87
"Introduction" => "index.md"
9-
]
10-
)
8+
])
119

12-
deploydocs(
13-
repo = "github.com/queryverse/IteratorInterfaceExtensions.jl.git"
14-
)
10+
deploydocs(repo = "github.com/queryverse/IteratorInterfaceExtensions.jl.git")

test/runtests.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ end
66

77
@testset "IteratorInterfaceExtensions" begin
88

9-
@test isiterable(MyType()) == false
10-
@test isiterable([1,2,3]) == true
9+
@test isiterable(MyType()) == false
10+
@test isiterable([1,2,3]) == true
1111

12-
@test_throws ErrorException getiterator(MyType())
12+
@test_throws ErrorException getiterator(MyType())
1313

14-
@test [1,2,3] == getiterator([1,2,3])
14+
@test [1,2,3] == getiterator([1,2,3])
1515

16-
@test IteratorSize2([1,2,3]) == Base.HasShape{1}()
16+
@test IteratorSize2([1,2,3]) == Base.HasShape{1}()
1717

1818
end

0 commit comments

Comments
 (0)