From f36355ed94a5229f82d120cd86448238a2ee8620 Mon Sep 17 00:00:00 2001 From: Daniel Rainer Date: Mon, 10 Nov 2025 17:23:34 +0100 Subject: [PATCH] docs: Remove useless doc comment This doc comment triggers the `clippy::empty_line_after_doc_comments` lint. It could be converted to a normal comment, or the newline could be deleted, but I don't think the comment provides any information not already contained in the struct name, so there is no point in keeping it. --- fluent-bundle/examples/custom_type.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/fluent-bundle/examples/custom_type.rs b/fluent-bundle/examples/custom_type.rs index 71c0f882..16fc0f81 100644 --- a/fluent-bundle/examples/custom_type.rs +++ b/fluent-bundle/examples/custom_type.rs @@ -115,8 +115,6 @@ impl FluentType for DateTime { } } -/// Formatter - struct DateTimeFormatter { lang: LanguageIdentifier, options: DateTimeOptions,