Skip to content

Commit ea31f74

Browse files
authored
extraneous bracket
1 parent 44b05ab commit ea31f74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/lib.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ accum(x::Nothing, y::AbstractThunk) = y
4444
accum(x::AbstractThunk, y::Nothing) = x
4545

4646
accum(x, y::AbstractThunk) = accum(x, unthunk(y))
47-
accum(x::AbstractThunk, y) = accum(unthunk(x), y))
47+
accum(x::AbstractThunk, y) = accum(unthunk(x), y)
4848
accum(x::AbstractThunk, y::AbstractThunk) = accum(unthunk(x), unthunk(y))
4949

5050
# Core functions

0 commit comments

Comments
 (0)