From b06dab84083390e0ee1e998f466545a8a1a76a9f Mon Sep 17 00:00:00 2001 From: Mika <121306011+MikaT-code@users.noreply.github.com> Date: Mon, 27 Feb 2023 00:30:52 +0200 Subject: [PATCH] Fixed typing errors (#1622) --- src/mir/debugging.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mir/debugging.md b/src/mir/debugging.md index 3da17785bb707..4e1d689386bd1 100644 --- a/src/mir/debugging.md +++ b/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 ...