Skip to content

Commit abaca3d

Browse files
Format
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 75982c1 commit abaca3d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/arrange.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ is_arranged(::Tuple, ::Tuple{}) = false
2828

2929
function is_arranged(t1::Tuple, t2::Tuple)
3030
a, b = t1[1], t2[1]
31-
return is_arranged(a, b) ||
32-
(isequal(a, b) && is_arranged(Base.tail(t1), Base.tail(t2)))
31+
return is_arranged(a, b) || (isequal(a, b) && is_arranged(Base.tail(t1), Base.tail(t2)))
3332
end
3433

3534

0 commit comments

Comments
 (0)