Skip to content

Commit 4b200dc

Browse files
Fix future incompatibility raised by rustc
Details: rust-lang/rust#79813
1 parent 1901ce9 commit 4b200dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ struct Docs {
5757

5858
macro_rules! doc_attr {
5959
($input:ident, $attr:expr, $default:expr) => {
60-
attr_string_val($input, $attr).unwrap_or($default);
60+
attr_string_val($input, $attr).unwrap_or($default)
6161
};
6262
}
6363

0 commit comments

Comments
 (0)