about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2018-02-27 14:16:18 -0500
committerWho? Me?! <mark-i-m@users.noreply.github.com>2018-02-28 14:30:04 -0600
commitba6a7f2efa6358f91cb606a4dff81830b64cda46 (patch)
tree94555068100a28272737245e89989985430f45d7 /src/doc/rustc-dev-guide
parent410136c80157c1b0f3e558a3b101576190395af6 (diff)
downloadrust-ba6a7f2efa6358f91cb606a4dff81830b64cda46.tar.gz
rust-ba6a7f2efa6358f91cb606a4dff81830b64cda46.zip
fix typo
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/mir-regionck.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/mir-regionck.md b/src/doc/rustc-dev-guide/src/mir-regionck.md
index d9d85408146..571d7c673b7 100644
--- a/src/doc/rustc-dev-guide/src/mir-regionck.md
+++ b/src/doc/rustc-dev-guide/src/mir-regionck.md
@@ -20,7 +20,7 @@ The MIR-based region analysis consists of two major functions:
     regions are the results of lexical region inference and hence are
     not of much interest. The intention is that -- eventually -- they
     will be "erased regions" (i.e., no information at all), since we
-    don't be doing lexical region inference at all.
+    won't be doing lexical region inference at all.
 - `compute_regions`, invoked second: this is given as argument the
   results of move analysis. It has the job of computing values for all
   the inference variabes that `replace_regions_in_mir` introduced.