We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents aaa0462 + c8eeb34 commit aa30404Copy full SHA for aa30404
compiler/rustc_middle/src/hir/map/mod.rs
@@ -285,7 +285,7 @@ impl<'hir> Map<'hir> {
285
let owner = self.tcx.hir_owner_nodes(id.owner);
286
owner.and_then(|owner| {
287
let node = owner.nodes[id.local_id].as_ref();
288
- // FIXME(eddyb) use a single generic type insted of having both
+ // FIXME(eddyb) use a single generic type instead of having both
289
// `Entry` and `ParentedNode`, which are effectively the same.
290
// Alternatively, rewrite code using `Entry` to use `ParentedNode`.
291
node.map(|node| Entry {
0 commit comments