Skip to content

Commit fa6c80d

Browse files
Fixed wrong variable name (#593)
1 parent 9b3803d commit fa6c80d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/queries/query-evaluation-model-in-detail.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ The `type_check_crate` query provider would look something like the following:
115115

116116
```rust,ignore
117117
fn type_check_crate_provider(tcx, _key: ()) {
118-
let list_of_items = tcx.hir_map.list_of_items();
118+
let list_of_hir_items = tcx.hir_map.list_of_items();
119119
120120
for item_def_id in list_of_hir_items {
121121
tcx.type_check_item(item_def_id);

0 commit comments

Comments
 (0)