diff options
author | Florian Klink <flokli@flokli.de> | 2023-07-14 14:25:33 +0300 |
---|---|---|
committer | Florian Klink <flokli@flokli.de> | 2023-07-14 14:25:33 +0300 |
commit | b1ca1784a12f2eed4cb9d85cdf8c3c1b8a0147da (patch) | |
tree | b50e0f7006932f97b5fd37661e5627cb880612ab | |
parent | f0b7a0af3dfc2b550e1d86fa11f4e10a8337e6cb (diff) | |
download | garage-b1ca1784a12f2eed4cb9d85cdf8c3c1b8a0147da.tar.gz garage-b1ca1784a12f2eed4cb9d85cdf8c3c1b8a0147da.zip |
src/garage/cli: fix typo
-rw-r--r-- | src/garage/cli/structs.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/garage/cli/structs.rs b/src/garage/cli/structs.rs index 01ae92da..6e585e53 100644 --- a/src/garage/cli/structs.rs +++ b/src/garage/cli/structs.rs @@ -216,7 +216,7 @@ pub struct WebsiteOpt { #[structopt(short = "i", long = "index-document", default_value = "index.html")] pub index_document: String, - /// Error document: the optionnal document returned when an error occurs + /// Error document: the optional document returned when an error occurs #[structopt(short = "e", long = "error-document")] pub error_document: Option<String>, } |