From be88631b5ed8fe18b793b9251e048fd42eb0a62f Mon Sep 17 00:00:00 2001 From: Kitsu Date: Sat, 24 Apr 2021 16:21:43 +0300 Subject: [PATCH] Remove redundant args default notice --- sqlx-cli/src/opt.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sqlx-cli/src/opt.rs b/sqlx-cli/src/opt.rs index 72958f267..8d912668b 100644 --- a/sqlx-cli/src/opt.rs +++ b/sqlx-cli/src/opt.rs @@ -69,14 +69,14 @@ pub enum DatabaseCommand { #[clap(short)] yes: bool, - /// Path to folder containing migrations. Defaults to 'migrations' + /// Path to folder containing migrations. #[clap(long, default_value = "migrations")] source: String, }, /// Creates the database specified in your DATABASE_URL and runs any pending migrations. Setup { - /// Path to folder containing migrations. Defaults to 'migrations' + /// Path to folder containing migrations. #[clap(long, default_value = "migrations")] source: String, }, @@ -85,7 +85,7 @@ pub enum DatabaseCommand { /// Group of commands for creating and running migrations. #[derive(Clap, Debug)] pub struct MigrateOpt { - /// Path to folder containing migrations. Defaults to 'migrations' + /// Path to folder containing migrations. #[clap(long, default_value = "migrations")] pub source: String,