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.
2 parents 80cabf7 + 9f6567f commit f1a9901Copy full SHA for f1a9901
crates/hir-expand/src/builtin_fn_macro.rs
@@ -671,7 +671,7 @@ fn option_env_expand(
671
672
let expanded = match get_env_inner(db, arg_id, &key) {
673
None => quote! { #DOLLAR_CRATE::option::Option::None::<&str> },
674
- Some(s) => quote! { #DOLLAR_CRATE::option::Some(#s) },
+ Some(s) => quote! { #DOLLAR_CRATE::option::Option::Some(#s) },
675
};
676
677
ExpandResult::ok(ExpandedEager::new(expanded))
0 commit comments