From 4c67ee9268080c528a6cb232cb60a87f772624b2 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Tue, 14 Jul 2020 16:20:30 +0900 Subject: [PATCH] Fix distortions of "representation" --- src/doc/rustc-dev-guide/src/SUMMARY.md | 2 +- src/doc/rustc-dev-guide/src/part-3-intro.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/doc/rustc-dev-guide/src/SUMMARY.md b/src/doc/rustc-dev-guide/src/SUMMARY.md index 4f1c73293d72..53e75fc09f0a 100644 --- a/src/doc/rustc-dev-guide/src/SUMMARY.md +++ b/src/doc/rustc-dev-guide/src/SUMMARY.md @@ -59,7 +59,7 @@ - [Parallel Compilation](./parallel-rustc.md) - [Rustdoc](./rustdoc-internals.md) -# Source Code Representations +# Source Code Representation - [Prologue](./part-3-intro.md) - [Command-line arguments](./cli.md) diff --git a/src/doc/rustc-dev-guide/src/part-3-intro.md b/src/doc/rustc-dev-guide/src/part-3-intro.md index 2af8cce23e22..c10080632888 100644 --- a/src/doc/rustc-dev-guide/src/part-3-intro.md +++ b/src/doc/rustc-dev-guide/src/part-3-intro.md @@ -1,4 +1,4 @@ -# Part 3: Source Code Representations +# Part 3: Source Code Representation This part describes the process of taking raw source code from the user and transforming it into various forms that the compiler can work with easily.