Skip to content

Commit 752fc4d

Browse files
authored
Merge pull request #38 from Aaron1011/remove-semi
Remove trailing semicolon from err! macro
2 parents aaa4bff + 5f54a1a commit 752fc4d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
macro_rules! err {
22
($text:expr, $kind:expr) => {
3-
return Err(Error::new($kind, $text));
3+
return Err(Error::new($kind, $text))
44
};
55

66
($text:expr) => {

0 commit comments

Comments
 (0)