4441: fix typo unimplementated -> unimplemented r=edwin0cheng a=tspiteri

Pretty harmless typo, but it does get exposed in lsp-rust-analyzer-expand-macro.

Co-authored-by: Trevor Spiteri <tspiteri@ieee.org>
This commit is contained in:
bors[bot] 2020-05-13 05:20:02 +00:00 committed by GitHub
commit f4aec8a22e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -360,7 +360,7 @@ fn env_expand(
// However, we cannot use an empty string here, because for
// `include!(concat!(env!("OUT_DIR"), "/foo.rs"))` will become
// `include!("foo.rs"), which might go to infinite loop
let s = get_env_inner(db, arg_id, &key).unwrap_or_else(|| "__RA_UNIMPLEMENTATED__".to_string());
let s = get_env_inner(db, arg_id, &key).unwrap_or_else(|| "__RA_UNIMPLEMENTED__".to_string());
let expanded = quote! { #s };
Ok((expanded, FragmentKind::Expr))
@ -508,7 +508,7 @@ macro_rules! env {() => {}}
"#,
);
assert_eq!(expanded, "\"__RA_UNIMPLEMENTATED__\"");
assert_eq!(expanded, "\"__RA_UNIMPLEMENTED__\"");
}
#[test]