Auto merge of #7721 - ehuss:fix-doc-build-indent, r=Eh2406

Fix indentation mistake in doc comment.

The `build` directory should be under `debug`.
This commit is contained in:
bors 2019-12-19 20:02:35 +00:00
commit d5e20a9b7f

View file

@ -53,36 +53,36 @@
//! # incremental is enabled. //! # incremental is enabled.
//! incremental/ //! incremental/
//! //!
//! # This is the location at which the output of all custom build //! # This is the location at which the output of all custom build
//! # commands are rooted. //! # commands are rooted.
//! build/ //! build/
//! //!
//! # Each package gets its own directory where its build script and //! # Each package gets its own directory where its build script and
//! # script output are placed //! # script output are placed
//! $pkgname-$META/ # For the build script itself. //! $pkgname-$META/ # For the build script itself.
//! # The build script executable (name may be changed by user). //! # The build script executable (name may be changed by user).
//! build-script-build-$META //! build-script-build-$META
//! # Hard link to build-script-build-$META. //! # Hard link to build-script-build-$META.
//! build-script-build //! build-script-build
//! # Dependency information generated by rustc. //! # Dependency information generated by rustc.
//! build-script-build-$META.d //! build-script-build-$META.d
//! # Debug information, depending on platform and profile //! # Debug information, depending on platform and profile
//! # settings. //! # settings.
//! <debug symbols> //! <debug symbols>
//! //!
//! # The package shows up twice with two different metadata hashes. //! # The package shows up twice with two different metadata hashes.
//! $pkgname-$META/ # For the output of the build script. //! $pkgname-$META/ # For the output of the build script.
//! # Timestamp when the build script was last executed. //! # Timestamp when the build script was last executed.
//! invoked.timestamp //! invoked.timestamp
//! # Directory where script can output files ($OUT_DIR). //! # Directory where script can output files ($OUT_DIR).
//! out/ //! out/
//! # Output from the build script. //! # Output from the build script.
//! output //! output
//! # Path to `out`, used to help when the target directory is //! # Path to `out`, used to help when the target directory is
//! # moved. //! # moved.
//! root-output //! root-output
//! # Stderr output from the build script. //! # Stderr output from the build script.
//! stderr //! stderr
//! //!
//! # Output from rustdoc //! # Output from rustdoc
//! doc/ //! doc/