Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 9f6567f

Browse files
committed
Fix option_env expansion
1 parent 80cabf7 commit 9f6567f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/hir-expand/src/builtin_fn_macro.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ fn option_env_expand(
671671

672672
let expanded = match get_env_inner(db, arg_id, &key) {
673673
None => quote! { #DOLLAR_CRATE::option::Option::None::<&str> },
674-
Some(s) => quote! { #DOLLAR_CRATE::option::Some(#s) },
674+
Some(s) => quote! { #DOLLAR_CRATE::option::Option::Some(#s) },
675675
};
676676

677677
ExpandResult::ok(ExpandedEager::new(expanded))

0 commit comments

Comments
 (0)