Skip to content

Commit ef16b04

Browse files
authored
Merge pull request #1 from jseyfried/trailing_semicolon
Add a trailing semicolon to avoid breakage.
2 parents 7149daf + 5414e43 commit ef16b04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ impl Link {
103103

104104
macro_rules! build_headers {
105105
($list:ident, $($x:expr),+) => (
106-
$($list.append($x).unwrap())+
106+
$($list.append($x).unwrap();)+
107107
)
108108
}
109109

0 commit comments

Comments
 (0)