Skip to content

Commit

Permalink
Add documentation for pub keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
sjud authored and Mark-Simulacrum committed Mar 13, 2020
1 parent 54b7d21 commit 87f8ee6
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/libstd/keyword_docs.rs
Expand Up @@ -925,9 +925,15 @@ mod mut_keyword {}
//
/// Make an item visible to others.
///
/// The documentation for this keyword is [not yet complete]. Pull requests welcome!
/// The keyword `pub` makes any module, function, or data structure accessible from inside
/// of external modules. The `pub` keyword may also be used in a `use` declaration to re-export
/// an identifier from a namespace.
///
/// [not yet complete]: https://github.com/rust-lang/rust/issues/34601
/// For more information on the `pub` keyword, please see the visibility section
/// of the [reference] and for some examples, see [Rust by Example].
///
/// [reference]:../reference/visibility-and-privacy.html?highlight=pub#visibility-and-privacy
/// [Rust by Example]:../rust-by-example/mod/visibility.html
mod pub_keyword {}

#[doc(keyword = "ref")]
Expand Down

0 comments on commit 87f8ee6

Please sign in to comment.