Skip to content

Commit

Permalink
extraneous bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
ToucheSir authored Jan 24, 2025
1 parent 44b05ab commit ea31f74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/lib.jl
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ accum(x::Nothing, y::AbstractThunk) = y
accum(x::AbstractThunk, y::Nothing) = x

accum(x, y::AbstractThunk) = accum(x, unthunk(y))
accum(x::AbstractThunk, y) = accum(unthunk(x), y))
accum(x::AbstractThunk, y) = accum(unthunk(x), y)
accum(x::AbstractThunk, y::AbstractThunk) = accum(unthunk(x), unthunk(y))

# Core functions
Expand Down

0 comments on commit ea31f74

Please sign in to comment.