Skip to content

Commit

Permalink
Fix unnecessary trailing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
jplatte committed Sep 21, 2022
1 parent 7d621a3 commit 369966e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/link.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 369966e

Please sign in to comment.