Skip to content

Commit

Permalink
ormolu'ed
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyday567 committed Jul 26, 2023
1 parent b68885f commit fb21dec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/NumHask/Array/Dynamic.hs
Expand Up @@ -244,7 +244,7 @@ sequent ds = tabulate ds go
where
go [] = zero
go [i] = i
go (i : js) = bool zero i (all (i==) js)
go (i : js) = bool zero i (all (i ==) js)

-- | Extract the diagonal of an array.
--
Expand Down
2 changes: 1 addition & 1 deletion src/NumHask/Array/Fixed.hs
Expand Up @@ -348,7 +348,7 @@ sequent = tabulate go
where
go [] = zero
go [i] = i
go (i : js) = bool zero i (all (i==) js)
go (i : js) = bool zero i (all (i ==) js)

-- | Extract the diagonal of an array.
--
Expand Down

0 comments on commit fb21dec

Please sign in to comment.