-
Notifications
You must be signed in to change notification settings - Fork 73
Keep space between commas #192
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
Comments
Is this convention or a rule from the tidyverse style guide? I guess you cannot really derive it from section 2.2.
Also, the style guide clarifies in section 2.3 that the following is bad style: # Bad
mean(x = 1:10, , FALSE) So I wonder what we should do about that. |
2.3 is about naming arguments vs. omitting arguments, but sometimes we do need to explicitly pass a missing argument, e.g. in |
So maybe 2.2 needs an extension? |
Ok, I can file an issue. |
Well I just thought about it and maybe it's not worth an extension in the style guide since it is a very rare thing. I can just implement directly. |
The second example looks good, the first needs a space between the commas.
The text was updated successfully, but these errors were encountered: