Skip to content

Commit 6505568

Browse files
Format files using DocumentFormat
1 parent 4852e0f commit 6505568

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

docs/make.jl

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

33
makedocs(
4-
modules = [IteratorInterfaceExtensions],
5-
sitename = "IteratorInterfaceExtensions.jl",
4+
modules=[IteratorInterfaceExtensions],
5+
sitename="IteratorInterfaceExtensions.jl",
66
analytics="UA-132838790-1",
7-
pages = [
7+
pages=[
88
"Introduction" => "index.md"
99
]
1010
)
1111

1212
deploydocs(
13-
repo = "github.com/queryverse/IteratorInterfaceExtensions.jl.git"
13+
repo="github.com/queryverse/IteratorInterfaceExtensions.jl.git"
1414
)

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)