-
Notifications
You must be signed in to change notification settings - Fork 913
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
extra spacing added to normalised inner comment in a function call #1747
Comments
Do you have a working example @topecongiro ? fn bar() {
- foo(xxxxxxx, xxxxxxxx /* inline comment */, y /* sup */);
+ foo(
+ xxxxxxx, xxxxxxxx, // inline comment
+ y, // sup
+ );
} |
Although the spacing before |
Yeah looks like the original issue is fixed. |
@topecongiro I have renamed the issue to better reflect the new problem |
This is still reproducible with the current master input fn main() {
foo(xxxxxxx, xxxxxxxx /* inline comment */, y /* sup */);
} output fn main() {
foo(
xxxxxxx, xxxxxxxx, // inline comment
y, // sup
);
} Doing some testing, and forcing
Just a hunch but it seems like the comment alignment is still trying to align the comments even when the Lines 404 to 504 in a7bf009
|
linking tracking issue for |
E.g.
when
normalize_comments = true
.The text was updated successfully, but these errors were encountered: