From 9b62b53b61926d339079b68839abae80ef82b6d0 Mon Sep 17 00:00:00 2001 From: Cormac Relf Date: Fri, 6 Dec 2024 11:38:02 +1100 Subject: [PATCH] fix a clippy 'empty line after doc comment warning' by making it a regular comment --- macros/src/actionlike.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/macros/src/actionlike.rs b/macros/src/actionlike.rs index 8d903e73..ce230db9 100644 --- a/macros/src/actionlike.rs +++ b/macros/src/actionlike.rs @@ -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 +// This approach and implementation is inspired by the `strum` crate, +// Copyright (c) 2019 Peter Glotfelty +// available under the MIT License at pub(crate) fn actionlike_inner(ast: &DeriveInput) -> syn::Result { // Splitting the abstract syntax tree