Skip to content

Commit

Permalink
fix a clippy 'empty line after doc comment warning' by making it a re…
Browse files Browse the repository at this point in the history
…gular comment
  • Loading branch information
cormacrelf committed Dec 6, 2024
1 parent e585c3d commit 9b62b53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions macros/src/actionlike.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ use quote::quote;
use std::collections::HashMap;
use syn::{Attribute, Data, DataEnum, DeriveInput, Error, Ident};

/// This approach and implementation is inspired by the `strum` crate,
/// Copyright (c) 2019 Peter Glotfelty
/// available under the MIT License at <https://github.com/Peternator7/strum>
// This approach and implementation is inspired by the `strum` crate,
// Copyright (c) 2019 Peter Glotfelty
// available under the MIT License at <https://github.com/Peternator7/strum>

pub(crate) fn actionlike_inner(ast: &DeriveInput) -> syn::Result<TokenStream> {
// Splitting the abstract syntax tree
Expand Down

0 comments on commit 9b62b53

Please sign in to comment.