Skip to content

Commit

Permalink
fix up some broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
KodrAus committed Aug 11, 2023
1 parent 635fb14 commit eb5d8a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/traits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ impl<B> Flag<B> {
/**
Whether the flag is named.
If [`name`] returns a non-empty string then this method will return `true`.
If [`Flag::name`] returns a non-empty string then this method will return `true`.
*/
pub const fn is_named(&self) -> bool {
!self.name.is_empty()
Expand All @@ -54,7 +54,7 @@ impl<B> Flag<B> {
/**
Whether the flag is unnamed.
If [`name`] returns a non-empty string then this method will return `false`.
If [`Flag::name`] returns a non-empty string then this method will return `false`.
*/
pub const fn is_unnamed(&self) -> bool {
self.name.is_empty()
Expand Down

0 comments on commit eb5d8a6

Please sign in to comment.