Skip to content

Commit 369966e

Browse files
committed
Fix unnecessary trailing semicolon
1 parent 7d621a3 commit 369966e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/link.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -923,7 +923,7 @@ mod tests {
923923

924924
#[test]
925925
fn test_link_fmt_delimited() {
926-
struct TestFormatterStruct<'a> { v: Vec<&'a str> };
926+
struct TestFormatterStruct<'a> { v: Vec<&'a str> }
927927

928928
impl<'a> fmt::Display for TestFormatterStruct<'a> {
929929
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {

0 commit comments

Comments
 (0)