fix typo unimplementated -> unimplemented

Pretty harmless typo, but it does get exposed in
lsp-rust-analyzer-expand-macro.
This commit is contained in:
Trevor Spiteri 2020-05-12 23:51:38 +02:00
parent 23cc6908a7
commit 3583e0fe2b

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 @@ mod tests {
"#,
);
assert_eq!(expanded, "\"__RA_UNIMPLEMENTATED__\"");
assert_eq!(expanded, "\"__RA_UNIMPLEMENTED__\"");
}
#[test]