From 8aaa0b6f43786bf5b3fc373bf3de41570171f0f6 Mon Sep 17 00:00:00 2001 From: Gal Schlezinger Date: Thu, 17 Nov 2022 17:21:14 +0200 Subject: [PATCH] add EXPERIMENTAL to show that it is, in fact, EXPERIMENTAL --- src/commands/env.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/commands/env.rs b/src/commands/env.rs index 975520f..bb66320 100644 --- a/src/commands/env.rs +++ b/src/commands/env.rs @@ -26,10 +26,8 @@ pub struct Env { /// Print the script to change Node versions every directory change #[clap(long)] use_on_cd: bool, - - /// Adds `node` shims to your PATH environment variable - /// to allow you to use `node` commands in your shell - /// without rehashing. + /// EXPERIMENTAL: Adds `node` shims to your PATH environment variable to allow you + /// to use `node` commands in your shell without rehashing. #[structopt(long)] with_shims: bool, }