Auto merge of #13898 - lnicola:option-env, r=Veykril
fix: Fix option_env expansion
This commit is contained in:
commit
f1a99014b3
1 changed files with 1 additions and 1 deletions
|
|
@ -671,7 +671,7 @@ fn option_env_expand(
|
|||
|
||||
let expanded = match get_env_inner(db, arg_id, &key) {
|
||||
None => quote! { #DOLLAR_CRATE::option::Option::None::<&str> },
|
||||
Some(s) => quote! { #DOLLAR_CRATE::option::Some(#s) },
|
||||
Some(s) => quote! { #DOLLAR_CRATE::option::Option::Some(#s) },
|
||||
};
|
||||
|
||||
ExpandResult::ok(ExpandedEager::new(expanded))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue