diff --git a/doc/fd.1 b/doc/fd.1 index 9247415..6616ee9 100644 --- a/doc/fd.1 +++ b/doc/fd.1 @@ -456,6 +456,6 @@ $ fd -e py .RI "Open all search results with vim:" $ fd pattern -X vim .SH BUGS -Bugs can be reported on Github: https://github.com/sharkdp/fd +Bugs can be reported on GitHub: https://github.com/sharkdp/fd/issues .SH SEE ALSO .BR find (1) diff --git a/src/app.rs b/src/app.rs index 45dd443..a9eba45 100644 --- a/src/app.rs +++ b/src/app.rs @@ -12,8 +12,9 @@ pub fn build_app() -> Command<'static> { .color(clap_color_choice) .setting(AppSettings::DeriveDisplayOrder) .dont_collapse_args_in_usage(true) - .after_help("Bugs can be reported on Github: https://github.com/sharkdp/fd\n\n\ - Note: `fd -h` prints a short and concise overview while `fd --help` gives all details.", + .after_help( + "Note: `fd -h` prints a short and concise overview while `fd --help` gives all \ + details.", ) .arg( Arg::new("hidden")