-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Doc comments to attribute conversion without syntactic sugar #19420
Comments
Another interesting symptom is that it doesn't insert any whitespace. Everything gets run together on one line making it look like this in the docs.
|
I believe this desugaring is still the case, although I'm not sure I understand why this affects the use of |
@steveklabnik: Should this old issue receive additional tags and/or be closed? |
yup, without more info, gonna consider this one closed. @l0kod if you still have something here, please just open a new issue with the current context, thanks! |
Like the doc said and then refute,
/// Foo
turns into#[doc="/// Foo"]
which is a bug. It should turns into#[doc="Foo"]
(without the///
). Same apply for/** … */
.This is an issue for macro using the
meta
matcher (cf. #13067) to insert doc into generated code.cc #18376
cc #10642
cc #6444
The text was updated successfully, but these errors were encountered: