We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c114a9a commit 0c1d09eCopy full SHA for 0c1d09e
1 file changed
packages/yew-macro/src/html_tree/html_for.rs
@@ -43,7 +43,7 @@ impl Parse for HtmlFor {
43
braced!(body_stream in input);
44
45
let body = HtmlChildrenTree::parse_delimited(&body_stream)?;
46
- // TODO: more concise code by using if-let guards once MSRV is raised
+ // TODO: more concise code by using if-let guards (MSRV 1.95)
47
for child in body.0.iter() {
48
let HtmlTree::Element(element) = child else {
49
continue;
0 commit comments