about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorMika <121306011+MikaT-code@users.noreply.github.com>2023-02-27 00:30:52 +0200
committerGitHub <noreply@github.com>2023-02-27 07:30:52 +0900
commitb8c9fc99c8d884ae0c734fcc8eeb7a943dd4fd78 (patch)
treedf403fee21d50347c6cac3724444864579721194 /src/doc/rustc-dev-guide
parent6245105a65581a18c46d46b921e3e5ee4368c766 (diff)
downloadrust-b8c9fc99c8d884ae0c734fcc8eeb7a943dd4fd78.tar.gz
rust-b8c9fc99c8d884ae0c734fcc8eeb7a943dd4fd78.zip
Fixed typing errors (#1622)
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/mir/debugging.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/rustc-dev-guide/src/mir/debugging.md b/src/doc/rustc-dev-guide/src/mir/debugging.md
index 3da17785bb7..4e1d689386b 100644
--- a/src/doc/rustc-dev-guide/src/mir/debugging.md
+++ b/src/doc/rustc-dev-guide/src/mir/debugging.md
@@ -14,10 +14,10 @@ elements obscured by overlaps, and tooltips to view the MIR statements).
 This flag takes an optional value: `statement` (the default), `terminator`, or
 `block`, to generate span highlights with different levels of granularity.
 
-`-Z dump-mir=F` is a handy compiler options that will let you view the MIR for
+`-Z dump-mir=F` is a handy compiler option that will let you view the MIR for
 each function at each stage of compilation. `-Z dump-mir` takes a **filter** `F`
 which allows you to control which functions and which passes you are
-interesting in. For example:
+interested in. For example:
 
 ```bash
 > rustc -Z dump-mir=foo ...