diff options
| author | arijit79 <65700195+arijit79@users.noreply.github.com> | 2020-09-03 20:08:15 +0530 |
|---|---|---|
| committer | Mark Rousskov <mark.simulacrum@gmail.com> | 2020-09-10 10:29:24 -0400 |
| commit | fd5859a673e69eb9fd98e9a92c32dd0dc7fc1855 (patch) | |
| tree | 6955bd4d253870ac679123d56456040fe2b2a949 /src/doc/rustdoc | |
| parent | 3f5e617e3630ad61aa35637bbe0ab704eada5974 (diff) | |
| download | rust-fd5859a673e69eb9fd98e9a92c32dd0dc7fc1855.tar.gz rust-fd5859a673e69eb9fd98e9a92c32dd0dc7fc1855.zip | |
Add docs about crate level documentation support
Diffstat (limited to 'src/doc/rustdoc')
| -rw-r--r-- | src/doc/rustdoc/src/what-is-rustdoc.md | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/doc/rustdoc/src/what-is-rustdoc.md b/src/doc/rustdoc/src/what-is-rustdoc.md index adcebc832bc..7a38c96d714 100644 --- a/src/doc/rustdoc/src/what-is-rustdoc.md +++ b/src/doc/rustdoc/src/what-is-rustdoc.md @@ -93,6 +93,29 @@ passes `-L`, a flag that helps rustdoc find the dependencies your code relies on. If our project used dependencies, we'd get documentation for them as well! +## Outer and inner documentation + +The `///` syntax is used to document the item present after it. +That's why it is called an outer documentation. +There is another syntax: `//!`, which is used to document the +item it is present inside. It is called an inner documentation. +It is often used when documenting the entire crate, +because nothing comes before it: it is the root of the crate. +So in order to document an entire crate, you need to use `//!` syntax. +For example: + +``` rust +//! This is my first rust crate +``` + +When used in the crate root, it documents the item it is inside, +which is the crate itself. + +For more information about the `//!` syntax, see [the Book]. + +[the Book]: https://doc.rust-lang.org/book/ch14-02-publishing-to-crates-io.html#commenting-contained-items + + ## Using standalone Markdown files `rustdoc` can also generate HTML from standalone Markdown files. Let's |
