mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-28 11:20:36 +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()?;
|
||||
custom_build::build_map(&mut self)?;
|
||||
self.check_collistions()?;
|
||||
self.check_collisions()?;
|
||||
|
||||
for unit in &self.bcx.roots {
|
||||
// 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())
|
||||
}
|
||||
|
||||
fn check_collistions(&self) -> CargoResult<()> {
|
||||
fn check_collisions(&self) -> CargoResult<()> {
|
||||
let mut output_collisions = HashMap::new();
|
||||
let describe_collision = |unit: &Unit, other_unit: &Unit, path: &PathBuf| -> String {
|
||||
format!(
|
||||
|
Loading…
x
Reference in New Issue
Block a user