-
-
Notifications
You must be signed in to change notification settings - Fork 42
Open
Description
Hi! Is there any reason why multi-line docs are formatted using /**?
For example, the following code:
#[doc = " This is a single line doc"]
pub type foo = ::std::os::raw::c_int;
#[doc = " This is a multi line doc.\n With way too many lines"]
pub type bar = ::std::os::raw::c_int;is being formatted as
/// This is a single line doc
pub type foo = ::std::os::raw::c_int;
/** This is a multi line doc.
With way too many lines*/
pub type bar = ::std::os::raw::c_int;and I'd like it to be
/// This is a single line doc
pub type foo = ::std::os::raw::c_int;
/// This is a multi line doc.
/// With way too many lines
pub type bar = ::std::os::raw::c_int;qthree, ModProg, HythamSoliman, benluelo, jdygert-spok and 1 more
Metadata
Metadata
Assignees
Labels
No labels