From 0a7500b7801e4935e6de0fd71349b18b86d9209a Mon Sep 17 00:00:00 2001 From: Robin Steuteville Date: Fri, 2 Feb 2024 11:51:16 -0700 Subject: [PATCH] testing what happens if doc string in rust file changed --- rust/fastsim-core/fastsim-proc-macros/src/doc_field.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/fastsim-core/fastsim-proc-macros/src/doc_field.rs b/rust/fastsim-core/fastsim-proc-macros/src/doc_field.rs index 068f334c..68034015 100644 --- a/rust/fastsim-core/fastsim-proc-macros/src/doc_field.rs +++ b/rust/fastsim-core/fastsim-proc-macros/src/doc_field.rs @@ -101,7 +101,7 @@ fn remove_handled_attrs(field: &mut syn::Field, skip_doc: &mut bool) { }) .collect(); // println!("options {:?}", opts); - // this drops attrs matching `#[doc_field]`, removing the field attribute from the struct def + // This drops attrs matching `#[doc_field]`, removing the field attribute from the struct def. let new_attrs: (Vec<&syn::Attribute>, Vec) = field .attrs .iter()