hash-update!
refactoring should eta reduce when possible
#419
Labels
existing lint
Issues or pull requests relating to existing lints
In racket/drracket#698, Resyntax refactored
(hash-set! selected choice (not (hash-ref selected choice)))
to(hash-update! selected choice (λ (v) (not v)))
, but it would have been better to produce(hash-update! selected choice not)
.The text was updated successfully, but these errors were encountered: