diff --git a/README.md b/README.md index d177476..5acb644 100644 --- a/README.md +++ b/README.md @@ -15,13 +15,13 @@ ## usage - phetch # Launch and show start page. - phetch # Launch and show Gopherhole at URL. - phetch -r # Print raw Gopher response. - phetch -h # Show help. - phetch -v # Show version. + phetch launch and show start page + phetch open gopherhole at url + phetch -r, --raw print raw gopher response + phetch -h, --help show this screen + phetch -v, --version show phetch version -Once you've launched phetch, use `ctrl-h` to view the on-line help. + Once you've launched phetch, use `ctrl-h` to view the on-line help. ## installation diff --git a/src/main.rs b/src/main.rs index 9986d92..663f406 100644 --- a/src/main.rs +++ b/src/main.rs @@ -53,12 +53,14 @@ fn print_version() { fn print_usage() { println!( - "Usage: - phetch # Launch and show start page. - phetch # Open Gopherhole at URL. - phetch -r, --raw # Print raw Gopher response. - phetch -h, --help # Show this screen. - phetch -v, --version # Show phetch version." + "Usage: + phetch launch and show start page + phetch open gopherhole at url + phetch -r, --raw print raw gopher response + phetch -h, --help show this screen + phetch -v, --version show phetch version + +Once you've launched phetch, use `ctrl-h` to view the on-line help." ); }