From f3993d0619eeb5fee94905725ca16de48b16e0e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20K=C3=A5re=20Alsaker?= Date: Thu, 9 May 2019 13:56:14 +0200 Subject: [PATCH] Fix typo --- src/librustc/hir/map/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/librustc/hir/map/mod.rs b/src/librustc/hir/map/mod.rs index c2b513a39a8b7..807b90b08073f 100644 --- a/src/librustc/hir/map/mod.rs +++ b/src/librustc/hir/map/mod.rs @@ -1057,7 +1057,7 @@ impl<'hir> Map<'hir> { in_which: &parts[..parts.len() - 1], }; - self.all_ids().filter(move |hir| nodes.matces_suffix(*hir)).map(move |hir| { + self.all_ids().filter(move |hir| nodes.matches_suffix(*hir)).map(move |hir| { self.hir_to_node_id(hir) }) } @@ -1198,7 +1198,7 @@ impl<'a> NodesMatchingSuffix<'a> { name == &**self.item_name && self.suffix_matches(parent_of_n) } - fn matces_suffix(&self, hir: HirId) -> bool { + fn matches_suffix(&self, hir: HirId) -> bool { let name = match self.map.find_entry(hir).map(|entry| entry.node) { Some(Node::Item(n)) => n.name(), Some(Node::ForeignItem(n)) => n.name(),