about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorJoshua Nelson <joshua@yottadb.com>2020-10-19 22:31:34 -0400
committerJoshua Nelson <joshua@yottadb.com>2020-10-19 23:17:17 -0400
commit3867cc04d050312ff6178a66950820d8323806fc (patch)
treea776fe702ad79b342979ea60b5c8f9e5228c4dad /src/doc/rustc-dev-guide
parent3491394b55fc279ced0f73ad6456838072964ca5 (diff)
downloadrust-3867cc04d050312ff6178a66950820d8323806fc.tar.gz
rust-3867cc04d050312ff6178a66950820d8323806fc.zip
Revert "Remove outdated build rustdoc --stage 1"
This reverts commit cd35d2b5944d8436350b7f2f16f5e720d9912db6.
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/rustdoc-internals.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/rustdoc-internals.md b/src/doc/rustc-dev-guide/src/rustdoc-internals.md
index bfe2912291b..f9c37ecd4a6 100644
--- a/src/doc/rustc-dev-guide/src/rustdoc-internals.md
+++ b/src/doc/rustc-dev-guide/src/rustdoc-internals.md
@@ -201,7 +201,7 @@ server. To test these features locally, you can run a local HTTP server, like
 this:
 
 ```bash
-$ ./x.py doc library/std
+$ ./x.py doc library/std --stage 1
 # The documentation has been generated into `build/[YOUR ARCH]/doc`.
 $ python3 -m http.server -d build/[YOUR ARCH]/doc
 ```