Skip to content

Commit 8fd6100

Browse files
authored
Remove trailing semicolon in macro used in expression position (yewstack#2127)
1 parent 98821c4 commit 8fd6100

File tree

1 file changed

+1
-1
lines changed
  • packages/yew/src/virtual_dom

1 file changed

+1
-1
lines changed

packages/yew/src/virtual_dom/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ impl Apply for Attributes {
286286
}
287287
macro_rules! set {
288288
($new:expr) => {
289-
Self::set_attribute(el, key!(), $new);
289+
Self::set_attribute(el, key!(), $new)
290290
};
291291
}
292292

0 commit comments

Comments
 (0)