mirror of
https://github.com/rust-lang/cargo.git
synced 2025-10-01 11:30:39 +00:00
Fix typo in method name
This commit is contained in:
parent
a73e5b7d56
commit
50cc40bc89
@ -130,7 +130,7 @@ impl<'a, 'cfg> Context<'a, 'cfg> {
|
|||||||
self.prepare_units()?;
|
self.prepare_units()?;
|
||||||
self.prepare()?;
|
self.prepare()?;
|
||||||
custom_build::build_map(&mut self)?;
|
custom_build::build_map(&mut self)?;
|
||||||
self.check_collistions()?;
|
self.check_collisions()?;
|
||||||
|
|
||||||
for unit in &self.bcx.roots {
|
for unit in &self.bcx.roots {
|
||||||
// Build up a list of pending jobs, each of which represent
|
// Build up a list of pending jobs, each of which represent
|
||||||
@ -398,7 +398,7 @@ impl<'a, 'cfg> Context<'a, 'cfg> {
|
|||||||
Ok(inputs.into_iter().collect())
|
Ok(inputs.into_iter().collect())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn check_collistions(&self) -> CargoResult<()> {
|
fn check_collisions(&self) -> CargoResult<()> {
|
||||||
let mut output_collisions = HashMap::new();
|
let mut output_collisions = HashMap::new();
|
||||||
let describe_collision = |unit: &Unit, other_unit: &Unit, path: &PathBuf| -> String {
|
let describe_collision = |unit: &Unit, other_unit: &Unit, path: &PathBuf| -> String {
|
||||||
format!(
|
format!(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user