Awkward alignment of function calls in do block #128

Closed
opened 2018-03-21 17:00:05 +01:00 by matthew-piziak · 1 comment
matthew-piziak commented 2018-03-21 17:00:05 +01:00 (Migrated from github.com)

This seems undesirable. Is this behavior known?

… = do
  createDirectoryIfMissing True        path
  openFile                 fileName    AppendMode

I would prefer the following:

… = do
  createDirectoryIfMissing True path
  openFile fileName AppendMode
This seems undesirable. Is this behavior known? ``` … = do createDirectoryIfMissing True path openFile fileName AppendMode ``` I would prefer the following: ``` … = do createDirectoryIfMissing True path openFile fileName AppendMode ```
lspitzner commented 2018-03-22 01:21:58 +01:00 (Migrated from github.com)

oh, i need to write "fixes #65, fixes #128". stupid github :p

oh, i need to write "fixes #65, fixes #128". stupid github :p
Sign in to join this conversation.
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: hexagoxel/brittany#128
There is no content yet.