From c078ac1d9a21625eb88a5fc60d32e765a8cb2118 Mon Sep 17 00:00:00 2001 From: Chris Simpkins Date: Thu, 5 Mar 2020 21:58:34 -0500 Subject: [PATCH] update rustc-guide to rustc-dev-guide https://github.com/rust-lang/rustc-guide/issues/602 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 91afa6a..39548a2 100644 --- a/README.md +++ b/README.md @@ -14,8 +14,8 @@ enum Foo { type NineStrings = [&str, 3 * 3]; ``` -The Rust compiler runs the [MIR](https://rust-lang.github.io/rustc-guide/mir/index.html) -in the [`MIR` interpreter (miri)](https://rust-lang.github.io/rustc-guide/const-eval), +The Rust compiler runs the [MIR](https://rust-lang.github.io/rustc-dev-guide/mir/index.html) +in the [`MIR` interpreter (miri)](https://rust-lang.github.io/rustc-dev-guide/const-eval), which sort of is a virtual machine using `MIR` as "bytecode". ## Table of Contents