Apply suggestions from code review

Co-authored-by: Tshepang Lekhonkhobe <tshepang@gmail.com>
This commit is contained in:
LeSeulArtichaut 2020-09-11 01:10:07 +02:00 committed by Who? Me?!
parent fe19fc65f2
commit c7ec4769ab
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# Identifiers in the Compiler # Identifiers in the Compiler
If you have read the few previous chapters, you now know that the `rustc` uses If you have read the few previous chapters, you now know that `rustc` uses
many different intermediate representations to perform different kinds of analysis. many different intermediate representations to perform different kinds of analyses.
However, like in every data structure, you need a way to traverse the structure However, like in every data structure, you need a way to traverse the structure
and refer to other elements. In this chapter, you will find information on the and refer to other elements. In this chapter, you will find information on the
different identifiers `rustc` uses for each intermediate representation. different identifiers `rustc` uses for each intermediate representation.