]> git.lizzy.rs Git - rust.git/commitdiff
Fix typo
authorWho? Me?! <mark-i-m@users.noreply.github.com>
Mon, 1 Jan 2018 19:17:25 +0000 (13:17 -0600)
committerGitHub <noreply@github.com>
Mon, 1 Jan 2018 19:17:25 +0000 (13:17 -0600)
src/librustc/mir/README.md

index fb0c7ce1df23dd38a3be7a1c37f33b969701d39d..cac86be0fcb75c76a191cfb3a5223704ff868d37 100644 (file)
@@ -59,7 +59,7 @@ ensure that, before the MIR at a particular phase in the processing
 pipeline is stolen, anyone who may want to read from it has already
 done so. Concretely, this means that if you have some query `foo(D)`
 that wants to access the result of `mir_const(D)` or
-`mir_validated(D)`, you need to have the successor pass either "force"
+`mir_validated(D)`, you need to have the successor pass "force"
 `foo(D)` using `ty::queries::foo::force(...)`. This will force a query
 to execute even though you don't directly require its result.