File tree Expand file tree Collapse file tree 3 files changed +0
-8
lines changed Expand file tree Collapse file tree 3 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -2113,8 +2113,6 @@ impl Command {
2113
2113
/// )
2114
2114
/// # ;
2115
2115
/// ```
2116
- ///
2117
- /// [`ArgMatches::usage`]: ArgMatches::usage()
2118
2116
#[ must_use]
2119
2117
pub fn override_usage ( mut self , usage : impl IntoResettable < StyledStr > ) -> Self {
2120
2118
self . usage_str = usage. into_resettable ( ) . into_option ( ) ;
@@ -3746,8 +3744,6 @@ impl Command {
3746
3744
}
3747
3745
3748
3746
/// Get the custom section heading specified via [`Command::next_help_heading`].
3749
- ///
3750
- /// [`Command::help_heading`]: Command::help_heading()
3751
3747
#[ inline]
3752
3748
pub fn get_next_help_heading ( & self ) -> Option < & str > {
3753
3749
self . current_help_heading . as_deref ( )
Original file line number Diff line number Diff line change @@ -252,7 +252,6 @@ pub enum ErrorKind {
252
252
/// # }
253
253
/// ```
254
254
///
255
- /// [`Arg::allow_invalid_utf8`]: crate::Arg::allow_invalid_utf8
256
255
/// [`Command::external_subcommand_value_parser`]: crate::Command::external_subcommand_value_parser
257
256
InvalidUtf8 ,
258
257
Original file line number Diff line number Diff line change @@ -308,7 +308,6 @@ impl ArgMatches {
308
308
/// ```
309
309
/// [`Iterator`]: std::iter::Iterator
310
310
/// [`OsSt`]: std::ffi::OsStr
311
- /// [values]: OsValues
312
311
/// [`String`]: std::string::String
313
312
#[ cfg_attr( debug_assertions, track_caller) ]
314
313
pub fn get_raw ( & self , id : & str ) -> Option < RawValues < ' _ > > {
@@ -363,7 +362,6 @@ impl ArgMatches {
363
362
/// ```
364
363
/// [`Iterator`]: std::iter::Iterator
365
364
/// [`OsStr`]: std::ffi::OsStr
366
- /// [values]: OsValues
367
365
/// [`String`]: std::string::String
368
366
#[ cfg_attr( debug_assertions, track_caller) ]
369
367
pub fn get_raw_occurrences ( & self , id : & str ) -> Option < RawOccurrences < ' _ > > {
@@ -853,7 +851,6 @@ impl ArgMatches {
853
851
/// assert_eq!(m.indices_of("option").unwrap().collect::<Vec<_>>(), &[2]);
854
852
/// ```
855
853
/// [`ArgMatches::index_of`]: ArgMatches::index_of()
856
- /// [delimiter]: Arg::value_delimiter()
857
854
#[ cfg_attr( debug_assertions, track_caller) ]
858
855
pub fn indices_of ( & self , id : & str ) -> Option < Indices < ' _ > > {
859
856
let arg = some ! ( self . get_arg( id) ) ;
You can’t perform that action at this time.
0 commit comments