Skip to content

Commit

Permalink
docs(mangen): Fix docs for Man::section()
Browse files Browse the repository at this point in the history
  • Loading branch information
ducaale committed Mar 26, 2022
1 parent 731d18f commit d55e46f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions clap_mangen/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ impl<'a> Man<'a> {
///
/// Common values:
///
// - `"1"`: User Commands
// - `"2"`: System Calls
// - `"3"`: C Library Functions
// - `"4"`: Devices and Special Files
// - `"5"`: File Formats and Conventions
// - `"6"`: Games et. al.
// - `"7"`: Miscellanea
// - `"8"`: System Administration tools and Daemons
/// - `"1"`: User Commands
/// - `"2"`: System Calls
/// - `"3"`: C Library Functions
/// - `"4"`: Devices and Special Files
/// - `"5"`: File Formats and Conventions
/// - `"6"`: Games et. al.
/// - `"7"`: Miscellanea
/// - `"8"`: System Administration tools and Daemons
pub fn section(mut self, section: impl Into<String>) -> Self {
self.section = section.into();
self
Expand Down

0 comments on commit d55e46f

Please sign in to comment.