-
Notifications
You must be signed in to change notification settings - Fork 533
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"About This Guide" updates following Guide reorganization #671
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank @chrissimpkins! Left some minor nits, but r=me after that
src/part-2-intro.md
Outdated
@@ -1,4 +1,4 @@ | |||
# Part 2: How rustc works | |||
# Part 2: How `rustc` Works |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm... I think high-level compiler arch is actually a better name (also in the about this guode section).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
src/about-this-guide.md
Outdated
3. [Source Code Representation][p3]: Describes the process of taking raw source code from the user and | ||
transforming it into various forms that the compiler can work with easily | ||
4. [Analysis][p4]: discusses the analyses that the compiler uses to check various | ||
properties of the code and inform later stages of the compile process |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
perhaps add "(e.g., type checking)”
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
src/about-this-guide.md
Outdated
transforming it into various forms that the compiler can work with easily | ||
4. [Analysis][p4]: discusses the analyses that the compiler uses to check various | ||
properties of the code and inform later stages of the compile process | ||
5. [From MIR to Binaries][p5]: How linked executable machine code is generated |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor nit: can you end each point with a period?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No problem! Will add them now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
No problem at all! |
This PR updates the About This Guide page with the new section titles/descriptions following the reorganization in #651.