Skip to content

Commit 0c1d09e

Browse files
committed
chore(docs): update if-let gaurd stablization version
1 parent c114a9a commit 0c1d09e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/yew-macro/src/html_tree/html_for.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ impl Parse for HtmlFor {
4343
braced!(body_stream in input);
4444

4545
let body = HtmlChildrenTree::parse_delimited(&body_stream)?;
46-
// TODO: more concise code by using if-let guards once MSRV is raised
46+
// TODO: more concise code by using if-let guards (MSRV 1.95)
4747
for child in body.0.iter() {
4848
let HtmlTree::Element(element) = child else {
4949
continue;

0 commit comments

Comments
 (0)