Skip to content

Commit

Permalink
docs: Fix link to crate_authors macro
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Sep 30, 2022
1 parent 6328c14 commit e534478
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/builder/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1465,7 +1465,6 @@ impl Command {
/// .author("Me, me@mymain.com")
/// # ;
/// ```
/// [`crate_authors!`]: ./macro.crate_authors!.html
#[must_use]
pub fn author(mut self, author: impl IntoResettable<Str>) -> Self {
self.author = author.into_resettable().into_option();
Expand Down Expand Up @@ -1620,7 +1619,6 @@ impl Command {
/// .version("v0.1.24")
/// # ;
/// ```
/// [`crate_version!`]: ./macro.crate_version!.html
#[must_use]
pub fn version(mut self, ver: impl IntoResettable<Str>) -> Self {
self.version = ver.into_resettable().into_option();
Expand Down Expand Up @@ -1648,7 +1646,6 @@ impl Command {
/// binary: myprog")
/// # ;
/// ```
/// [`crate_version!`]: ./macro.crate_version!.html
#[must_use]
pub fn long_version(mut self, ver: impl IntoResettable<Str>) -> Self {
self.long_version = ver.into_resettable().into_option();
Expand Down

0 comments on commit e534478

Please sign in to comment.