From cd35d2b5944d8436350b7f2f16f5e720d9912db6 Mon Sep 17 00:00:00 2001 From: Ivan Tham Date: Tue, 20 Oct 2020 10:03:42 +0800 Subject: [PATCH] Remove outdated build rustdoc --stage 1 It builds with stage 1 by default. --- src/rustdoc-internals.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rustdoc-internals.md b/src/rustdoc-internals.md index f9c37ecd..bfe29122 100644 --- a/src/rustdoc-internals.md +++ b/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 --stage 1 +$ ./x.py doc library/std # The documentation has been generated into `build/[YOUR ARCH]/doc`. $ python3 -m http.server -d build/[YOUR ARCH]/doc ```