Skip to content

Commit 07e535b

Browse files
committed
Auto merge of rust-lang#14682 - wackbyte:grammar, r=lnicola
fix grammar
2 parents 370b72c + 01c5981 commit 07e535b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/project-model/src/workspace.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1266,7 +1266,7 @@ fn add_target_crate_root(
12661266
if is_proc_macro {
12671267
let proc_macro = match build_data.as_ref().map(|it| it.proc_macro_dylib_path.as_ref()) {
12681268
Some(it) => it.cloned().map(|path| Ok((Some(cargo_name.to_owned()), path))),
1269-
None => Some(Err("crate has not yet been build".to_owned())),
1269+
None => Some(Err("crate has not yet been built".to_owned())),
12701270
};
12711271
if let Some(proc_macro) = proc_macro {
12721272
proc_macros.insert(crate_id, proc_macro);

0 commit comments

Comments
 (0)