Skip to content

Commit

Permalink
Fix typo in cargo pgx init "download" option documentation (#578)
Browse files Browse the repository at this point in the history
Co-authored-by: Eric Ridge <[email protected]>
Co-authored-by: Francesco Degrassi <[email protected]>
  • Loading branch information
3 people authored Jun 1, 2022
1 parent 0848dfe commit e3a53fd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cargo-pgx/src/command/init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,19 +45,19 @@ static PROCESS_ENV_DENYLIST: &'static [&'static str] = &[
#[derive(clap::Args, Debug)]
#[clap(author)]
pub(crate) struct Init {
/// If installed locally, the path to PG10's `pgconfig` tool, or `downLoad` to have pgx download/compile/install it
/// If installed locally, the path to PG10's `pgconfig` tool, or `download` to have pgx download/compile/install it
#[clap(env = "PG10_PG_CONFIG", long, help = "")]
pg10: Option<String>,
/// If installed locally, the path to PG11's `pgconfig` tool, or `downLoad` to have pgx download/compile/install it
/// If installed locally, the path to PG11's `pgconfig` tool, or `download` to have pgx download/compile/install it
#[clap(env = "PG11_PG_CONFIG", long)]
pg11: Option<String>,
/// If installed locally, the path to PG12's `pgconfig` tool, or `downLoad` to have pgx download/compile/install it
/// If installed locally, the path to PG12's `pgconfig` tool, or `download` to have pgx download/compile/install it
#[clap(env = "PG12_PG_CONFIG", long)]
pg12: Option<String>,
/// If installed locally, the path to PG13's `pgconfig` tool, or `downLoad` to have pgx download/compile/install it
/// If installed locally, the path to PG13's `pgconfig` tool, or `download` to have pgx download/compile/install it
#[clap(env = "PG13_PG_CONFIG", long)]
pg13: Option<String>,
/// If installed locally, the path to PG14's `pgconfig` tool, or `downLoad` to have pgx download/compile/install it
/// If installed locally, the path to PG14's `pgconfig` tool, or `download` to have pgx download/compile/install it
#[clap(env = "PG14_PG_CONFIG", long)]
pg14: Option<String>,
#[clap(from_global, parse(from_occurrences))]
Expand Down

0 comments on commit e3a53fd

Please sign in to comment.