Skip to content

Commit

Permalink
Add link to wikipedia article for available tzs
Browse files Browse the repository at this point in the history
Closes #2.
  • Loading branch information
gbagnoli committed Aug 30, 2022
1 parent 55693f2 commit 6e93045
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ Usage

See `tzbuddy --help` for all available options.

tzbuddy uses timezones from the [IANA database](http://www.iana.org/time-zones).
A list of available timezones can be found on
[wikipedia](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones).

Prior to version `0.3`, `tzbuddy` did not support configuration files, and you
had to create an alias on the shell.

Expand Down
3 changes: 2 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ struct TimezoneHours {
#[clap(version=clap::crate_version!())]
#[clap(about=clap::crate_description!())]
struct Cli {
/// Which timezone(s) to display
/// Which timezone(s) to display.
/// List at: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
#[clap(short = 'z', long = "tz")]
timezones: Vec<String>,
/// Do not order timezones
Expand Down

0 comments on commit 6e93045

Please sign in to comment.