fix grammar

This commit is contained in:
wackbyte 2023-04-28 23:04:08 -04:00
parent 370b72c7dd
commit 01c59812ae
No known key found for this signature in database
GPG key ID: 937F2AE5CCEFBF59

View file

@ -1266,7 +1266,7 @@ fn add_target_crate_root(
if is_proc_macro {
let proc_macro = match build_data.as_ref().map(|it| it.proc_macro_dylib_path.as_ref()) {
Some(it) => it.cloned().map(|path| Ok((Some(cargo_name.to_owned()), path))),
None => Some(Err("crate has not yet been build".to_owned())),
None => Some(Err("crate has not yet been built".to_owned())),
};
if let Some(proc_macro) = proc_macro {
proc_macros.insert(crate_id, proc_macro);