about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorSantiago Pastorino <spastorino@gmail.com>2019-07-24 18:03:40 -0300
committerWho? Me?! <mark-i-m@users.noreply.github.com>2019-07-25 16:26:54 -0500
commit12227be97c8f800466b0228ea7d6fac350a808ec (patch)
tree5f07657c0e7ff9f0d1677152c9de2debc6636194 /src
parent14c1b0607c18842c5c929c31d8dad3a1694ed189 (diff)
downloadrust-12227be97c8f800466b0228ea7d6fac350a808ec.tar.gz
rust-12227be97c8f800466b0228ea7d6fac350a808ec.zip
Place is now a struct on nightly
Diffstat (limited to 'src')
-rw-r--r--src/doc/rustc-dev-guide/src/borrow_check/moves_and_initialization/move_paths.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/rustc-dev-guide/src/borrow_check/moves_and_initialization/move_paths.md b/src/doc/rustc-dev-guide/src/borrow_check/moves_and_initialization/move_paths.md
index d733e8ac7f1..157a9eaf3e8 100644
--- a/src/doc/rustc-dev-guide/src/borrow_check/moves_and_initialization/move_paths.md
+++ b/src/doc/rustc-dev-guide/src/borrow_check/moves_and_initialization/move_paths.md
@@ -28,7 +28,7 @@ they are indexed in ways that enable us to do move analysis more
 efficiently.
 
 [`MovePath`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/dataflow/move_paths/struct.MovePath.html
-[`Place`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc/mir/enum.Place.html
+[`Place`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc/mir/struct.Place.html
 
 ## Move path indices
 
@@ -122,5 +122,5 @@ which checks whether the dataflow results contain a value for the
 given move-path (e.g., `a.b`) or any child of that move-path (e.g.,
 `a.b.c`).
 
-[`Place`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc/mir/enum.Place.html
+[`Place`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc/mir/struct.Place.html
 [`has_any_child_of`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/dataflow/at_location/struct.FlowAtLocation.html#method.has_any_child_of