about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorYuki Okushi <huyuumi.dev@gmail.com>2019-06-27 05:45:00 +0900
committerWho? Me?! <mark-i-m@users.noreply.github.com>2019-06-26 22:21:47 -0500
commitb441d2fa894c64c757798ab50a6fa6c21a5129f7 (patch)
treeb4ca1f746fec7cc0bdb62cf7a9e8195e0c986b4f /src/doc
parente94168ce8719332cd7a50921aea4e697ea2de50b (diff)
downloadrust-b441d2fa894c64c757798ab50a6fa6c21a5129f7.tar.gz
rust-b441d2fa894c64c757798ab50a6fa6c21a5129f7.zip
Fix typo
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/rustc-dev-guide/src/mir/index.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/mir/index.md b/src/doc/rustc-dev-guide/src/mir/index.md
index baaf23c3697..9e9f933fe81 100644
--- a/src/doc/rustc-dev-guide/src/mir/index.md
+++ b/src/doc/rustc-dev-guide/src/mir/index.md
@@ -138,7 +138,7 @@ than one successor – that is, control may flow to different
 places. Function calls like the call to `Vec::new` are always
 terminators because of the possibility of unwinding, although in the
 case of `Vec::new` we are able to see that indeed unwinding is not
-possible, and hence we list only one succssor block, `bb2`.
+possible, and hence we list only one successor block, `bb2`.
 
 If we look ahead to `bb2`, we will see it looks like this: