mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-14 00:37:07 +00:00
dont try to compile macro comments
This commit is contained in:
parent
dc5ceb4cc3
commit
48ed04efcb
1 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@ use syn::{parse_macro_input, Data, DeriveInput};
|
||||||
/// all enum variants).
|
/// all enum variants).
|
||||||
///
|
///
|
||||||
/// Based on this code:
|
/// Based on this code:
|
||||||
/// ```
|
/// ```ignore
|
||||||
/// #[derive(serde::Deserialize, serde::Serialize, ActivityHandler)]
|
/// #[derive(serde::Deserialize, serde::Serialize, ActivityHandler)]
|
||||||
/// #[serde(untagged)]
|
/// #[serde(untagged)]
|
||||||
/// pub enum PersonInboxActivities {
|
/// pub enum PersonInboxActivities {
|
||||||
|
@ -14,7 +14,7 @@ use syn::{parse_macro_input, Data, DeriveInput};
|
||||||
/// UpdateNote(UpdateNote),
|
/// UpdateNote(UpdateNote),
|
||||||
/// ```
|
/// ```
|
||||||
/// It will generate this:
|
/// It will generate this:
|
||||||
/// ```
|
/// ```ignore
|
||||||
/// impl ActivityHandler for PersonInboxActivities {
|
/// impl ActivityHandler for PersonInboxActivities {
|
||||||
///
|
///
|
||||||
/// async fn verify(
|
/// async fn verify(
|
||||||
|
|
Loading…
Reference in a new issue