lspitzner / brittany

haskell source code formatter
GNU Affero General Public License v3.0
690 stars 72 forks source link

Parens around operator parameter are stripped #301

Open hseg opened 4 years ago

hseg commented 4 years ago

Sample input: on (%) f x y = f x % f y Output (with --omit-output-check): on % f x y = f x % f y Should have been: on (%) f x y = f x % f y