about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorLeSeulArtichaut <leseulartichaut@gmail.com>2020-06-10 20:19:59 +0200
committerGitHub <noreply@github.com>2020-06-10 15:19:59 -0300
commita9241928033cccb6dfdc64753b9d8a0e1993b54a (patch)
tree4be2eb18ea3607afcaed72c14a61894a20dacc55 /src/doc/rustc-dev-guide
parent376f3045d48cba302d10136cede674f7b2cb0c23 (diff)
downloadrust-a9241928033cccb6dfdc64753b9d8a0e1993b54a.tar.gz
rust-a9241928033cccb6dfdc64753b9d8a0e1993b54a.zip
Include "Lint" in the title of the diagnostics chapter (#742)
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/SUMMARY.md2
-rw-r--r--src/doc/rustc-dev-guide/src/diagnostics.md2
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 36048f7cbb9..ecc11350c2f 100644
--- a/src/doc/rustc-dev-guide/src/SUMMARY.md
+++ b/src/doc/rustc-dev-guide/src/SUMMARY.md
@@ -26,7 +26,7 @@
         - [with the linux perf tool](./profiling/with_perf.md)
     - [Coding conventions](./conventions.md)
     - [crates.io Dependencies](./crates-io.md)
-    - [Emitting Errors and other Diagnostics](diagnostics.md)
+    - [Errors and Lints](diagnostics.md)
         - [`LintStore`](./diagnostics/lintstore.md)
         - [Diagnostic Codes](./diagnostics/diagnostic-codes.md)
     - [Notification groups](notification-groups/about.md)
diff --git a/src/doc/rustc-dev-guide/src/diagnostics.md b/src/doc/rustc-dev-guide/src/diagnostics.md
index 428688fd3be..ce7a37a79e6 100644
--- a/src/doc/rustc-dev-guide/src/diagnostics.md
+++ b/src/doc/rustc-dev-guide/src/diagnostics.md
@@ -1,4 +1,4 @@
-# Emitting Errors and other Diagnostics
+# Errors and Lints
 
 A lot of effort has been put into making `rustc` have great error messages.
 This chapter is about how to emit compile errors and lints from the compiler.