Skip to content

Commit

Permalink
hlint
Browse files Browse the repository at this point in the history
  • Loading branch information
KommuSoft committed Mar 26, 2024
1 parent b809729 commit 5a2d8f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Css3/Selector/Core.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1535,7 +1535,7 @@ instance Arbitrary Class where
shrink (Class a) = Class <$> _shrinkIdent a

instance Arbitrary Nth where
arbitrary = Nth <$> ((1+) . abs <$> arbitrary) <*> arbitrary
arbitrary = Nth . (1+) . abs <$> arbitrary <*> arbitrary
shrink nth
| nth == nnth = []
| otherwise = [nnth]
Expand Down
2 changes: 1 addition & 1 deletion stack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#
# resolver: ./custom-snapshot.yaml
# resolver: https://example.com/snapshots/2018-01-01.yaml
resolver: lts-14.10
resolver: lts-21.1
save-hackage-creds: false

# User packages to be built.
Expand Down

0 comments on commit 5a2d8f1

Please sign in to comment.