about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorGeorge Fraser <george@fivetran.com>2020-05-02 15:06:21 -0700
committerWho? Me?! <mark-i-m@users.noreply.github.com>2020-05-07 17:30:27 -0500
commitcdba65df35f2b51bc5e3ddf4c9678b0b06df4913 (patch)
tree303ec71a1fa1f255cf0ea7a367b70f42c115a822 /src/doc/rustc-dev-guide
parent05aa62aa321e37c0fc560ddf12b1d237ead4421d (diff)
downloadrust-cdba65df35f2b51bc5e3ddf4c9678b0b06df4913.tar.gz
rust-cdba65df35f2b51bc5e3ddf4c9678b0b06df4913.zip
Line length
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/rustc-driver-getting-diagnostics.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/rustc-driver-getting-diagnostics.md b/src/doc/rustc-dev-guide/src/rustc-driver-getting-diagnostics.md
index d4b39555539..72649d6a225 100644
--- a/src/doc/rustc-dev-guide/src/rustc-driver-getting-diagnostics.md
+++ b/src/doc/rustc-dev-guide/src/rustc-driver-getting-diagnostics.md
@@ -8,7 +8,9 @@ NOTE: For the example to compile, you will need to first run the following:
 
     rustup component add rustc-dev
 
-To get diagnostics from the compiler, configure `rustc_interface::Config` to output diagnostic to a buffer, and run `TyCtxt.analysis`:
+To get diagnostics from the compiler, 
+configure `rustc_interface::Config` to output diagnostic to a buffer, 
+and run `TyCtxt.analysis`:
 
 ```rust
 #![feature(rustc_private)]