src/garage/cli: fix typo

This commit is contained in:
Florian Klink 2023-07-14 14:25:33 +03:00
parent f0b7a0af3d
commit b1ca1784a1
1 changed files with 1 additions and 1 deletions

View File

@ -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>,
}