Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Investigate removing indentation from multi-clause arguments / paremeters #9

Closed
daniel-trinh opened this issue Feb 5, 2014 · 0 comments

Comments

@daniel-trinh
Copy link
Owner

Multi-clause arguments and parameters are currently indented:

def something(
  a: Int,
  b: String, 
  c: Boolean)(
    d: Int,
    e: String, 
    f: Boolean)

If #7 and #8 is implemented, the extra indentation for visual feedback wouldn't be needed, and something like this would be enough:

def something(
  a: Int,
  b: String, 
  c: Boolean
)(
  d: Int,
  e: String, 
  f: Boolean
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant