Fix typos in help message

master
Evan Shaw 7 years ago
parent c8d4221c05
commit 4eabd04ec4
  1. 6
      src/command.rs

@ -16,17 +16,17 @@ use PBAR;
#[derive(Debug, StructOpt)] #[derive(Debug, StructOpt)]
pub enum Command { pub enum Command {
#[structopt(name = "init")] #[structopt(name = "init")]
/// 🐣 initialize a package.json based on your cmpiled wasm /// 🐣 initialize a package.json based on your compiled wasm
Init { Init {
path: Option<String>, path: Option<String>,
#[structopt(long = "scope", short = "s")] #[structopt(long = "scope", short = "s")]
scope: Option<String>, scope: Option<String>,
}, },
#[structopt(name = "pack")] #[structopt(name = "pack")]
/// 🍱 create a tar of your npm package but don't ublish! [NOT IMPLEMENTED] /// 🍱 create a tar of your npm package but don't publish! [NOT IMPLEMENTED]
Pack { path: Option<String> }, Pack { path: Option<String> },
#[structopt(name = "publish")] #[structopt(name = "publish")]
/// 🎆 pack up your npm package and publish! [NOT MPLEMENTED] /// 🎆 pack up your npm package and publish! [NOT IMPLEMENTED]
Publish { path: Option<String> }, Publish { path: Option<String> },
} }

Loading…
Cancel
Save