You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For export lists, you recommend indenting commented "section" lines two spaces further than the opening and closing braces and commas:
Format export lists as follows:
moduleData.Set
(
-- * The @Set@ typeSet
, empty
, singleton-- * Querying
, member
) where
However, you don't seem to follow this recommendation in your own packages (cassava, unordered-containers etc.).
Is this recommendation intentional? If so, are there real benefits to it? Why not simply start the comment in the same column as braces and commas? Like so:
moduleData.Set
(
-- * The @Set@ typeSet
, empty
, singleton-- * Querying
, member
) where
The text was updated successfully, but these errors were encountered:
For export lists, you recommend indenting commented "section" lines two spaces further than the opening and closing braces and commas:
However, you don't seem to follow this recommendation in your own packages (cassava, unordered-containers etc.).
Is this recommendation intentional? If so, are there real benefits to it? Why not simply start the comment in the same column as braces and commas? Like so:
The text was updated successfully, but these errors were encountered: