From df9158a39b69514577137b8cb249aa9e6eeb0db5 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Sun, 20 Jun 2021 16:25:31 +0900 Subject: [PATCH] Remove unnecessary section on the quickstart doc Rustdoc is part of rustc component and we don't need an additional one. Signed-off-by: Yuki Okushi --- Documentation/rust/quick-start.rst | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/Documentation/rust/quick-start.rst b/Documentation/rust/quick-start.rst index 5cf2be3c845ed9..d028f912235ef4 100644 --- a/Documentation/rust/quick-start.rst +++ b/Documentation/rust/quick-start.rst @@ -125,23 +125,6 @@ the component manually:: The standalone installers also come with ``clippy``. -rustdoc -******* - -If you install the ``rustdoc`` tool, then you will be able to generate pretty -HTML documentation for Rust code, including for the libraries (crates) inside -``rust/`` that are used by the rest of the kernel (for details, please see -:ref:`Documentation/rust/docs.rst `). - -If you are using ``rustup``, its ``default`` profile already installs the tool, -so you should be good to go. If you are using another profile, you can install -the component manually:: - - rustup component add rustdoc - -The standalone installers also come with ``rustdoc``. - - rust-analyzer *************