From 627614518570ac2ec85d2fae24846850568c2ab0 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Wed, 29 Jun 2022 15:16:23 +0200 Subject: [PATCH] Fix unnecessary trailing semicolon --- src/common/link.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/link.rs b/src/common/link.rs index c7905e2b..bc7663bd 100644 --- a/src/common/link.rs +++ b/src/common/link.rs @@ -923,7 +923,7 @@ mod tests { #[test] fn test_link_fmt_delimited() { - struct TestFormatterStruct<'a> { v: Vec<&'a str> }; + struct TestFormatterStruct<'a> { v: Vec<&'a str> } impl<'a> fmt::Display for TestFormatterStruct<'a> { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {