Skip to content

Commit 50cc40b

Browse files
committed
Fix typo in method name
1 parent a73e5b7 commit 50cc40b

File tree

1 file changed

+2
-2
lines changed
  • src/cargo/core/compiler/context

1 file changed

+2
-2
lines changed

src/cargo/core/compiler/context/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ impl<'a, 'cfg> Context<'a, 'cfg> {
130130
self.prepare_units()?;
131131
self.prepare()?;
132132
custom_build::build_map(&mut self)?;
133-
self.check_collistions()?;
133+
self.check_collisions()?;
134134

135135
for unit in &self.bcx.roots {
136136
// Build up a list of pending jobs, each of which represent
@@ -398,7 +398,7 @@ impl<'a, 'cfg> Context<'a, 'cfg> {
398398
Ok(inputs.into_iter().collect())
399399
}
400400

401-
fn check_collistions(&self) -> CargoResult<()> {
401+
fn check_collisions(&self) -> CargoResult<()> {
402402
let mut output_collisions = HashMap::new();
403403
let describe_collision = |unit: &Unit, other_unit: &Unit, path: &PathBuf| -> String {
404404
format!(

0 commit comments

Comments
 (0)