Skip to content

Commit

Permalink
Merge pull request #3415 from epage/man
Browse files Browse the repository at this point in the history
fix(man): Rename crate to match style
  • Loading branch information
epage authored Feb 8, 2022
2 parents b0199dc + 86bf680 commit c65b9f0
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ members = [
"clap_complete_fig",
"clap_generate",
"clap_generate_fig",
"clap_man",
"clap_mangen",
]

[package]
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion clap_man/CONTRIBUTING.md → clap_mangen/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# How to Contribute

See the [clap-wide CONTRIBUTING.md](../CONTRIBUTING.md). This will contain `clap_man` specific notes.
See the [clap-wide CONTRIBUTING.md](../CONTRIBUTING.md). This will contain `clap_mangen` specific notes.
6 changes: 3 additions & 3 deletions clap_man/Cargo.toml → clap_mangen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "clap_man"
name = "clap_mangen"
version = "0.1.0"
edition = "2018"
include = [
Expand All @@ -9,8 +9,8 @@ include = [
"README.md"
]
description = "A manpage generator for clap"
repository = "https://github.com/clap-rs/clap/tree/master/clap_man"
documentation = "https://docs.rs/clap_man"
repository = "https://github.com/clap-rs/clap/tree/master/clap_mangen"
documentation = "https://docs.rs/clap_mangen"
keywords = [
"clap",
"cli",
Expand Down
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions clap_man/README.md → clap_mangen/README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<!-- omit in TOC -->
# clap_man
# clap_mangen

> **Manpage generation for `clap`**
[![Crates.io](https://img.shields.io/crates/v/clap_man?style=flat-square)](https://crates.io/crates/clap_man)
[![Crates.io](https://img.shields.io/crates/d/clap_man?style=flat-square)](https://crates.io/crates/clap_man)
[![Crates.io](https://img.shields.io/crates/v/clap_mangen?style=flat-square)](https://crates.io/crates/clap_mangen)
[![Crates.io](https://img.shields.io/crates/d/clap_mangen?style=flat-square)](https://crates.io/crates/clap_mangen)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/master/LICENSE-APACHE)
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/master/LICENSE-MIT)

Dual-licensed under [Apache 2.0](LICENSE-APACHE) or [MIT](LICENSE-MIT).

1. [About](#about)
2. [API Reference](https://docs.rs/clap_man)
2. [API Reference](https://docs.rs/clap_mangen)
3. [Questions & Discussions](https://github.com/clap-rs/clap/discussions)
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/v3.0.0-rc.4/clap_generate/CCONTRIBUTING.md)
5. [Sponsors](https://github.com/clap-rs/clap/blob/v3.0.0-rc.4/README.md#sponsors)
Expand Down
2 changes: 1 addition & 1 deletion clap_man/examples/man.rs → clap_mangen/examples/man.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use clap::{arg, App};
use clap_man::Man;
use clap_mangen::Man;
use std::io;

// Run this example as `cargo run --example man | man -l -`.
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use clap::{arg, App};
use clap_man::Man;
use clap_mangen::Man;
use std::io;

#[test]
Expand Down

0 comments on commit c65b9f0

Please sign in to comment.