Allow multiline docs on message members

The
This commit is contained in:
Barret Rennie 2020-06-30 01:22:53 -04:00
Родитель 4ebed9f585
Коммит 7f5bb6596b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4D71D86C09132D72
1 изменённых файлов: 13 добавлений и 1 удалений

Просмотреть файл

@ -20,10 +20,22 @@
//!
//! ```ignore
//! impl_message! {
//! /// The message type.
//! Msg,
//! /// The message kind enumeration.
//! MsgKind;
//! /// A message without any fields.
//! ///
//! /// This is the most simple kind of message.
//! FooMsg;
//!
//! /// A "Bar msg"
//! ///
//! /// This message has a field.
//! BarMsg {
//! /// The contents of the message.
//! ///
//! /// The type of this field is `u32`.
//! field: u32,
//! };
//! }
@ -143,7 +155,7 @@ macro_rules! impl_message_inner {
$(#[doc = $doc:expr])*
$name:ident {
$(
$(#[doc = $field_doc:expr])?
$(#[doc = $field_doc:expr])*
$field:ident : $field_ty:ty,
)*
}) => {