diff --git a/crates/uv/src/commands/pip/install.rs b/crates/uv/src/commands/pip/install.rs index 86ae522730903..c69c03e2e8906 100644 --- a/crates/uv/src/commands/pip/install.rs +++ b/crates/uv/src/commands/pip/install.rs @@ -147,7 +147,7 @@ pub(crate) async fn pip_install( if pylock.is_some() { if !preview.is_enabled(PreviewFeatures::PYLOCK) { warn_user!( - "The `--pylock` setting is experimental and may change without warning. Pass `--preview-features {}` to disable this warning.", + "The `--pylock` option is experimental and may change without warning. Pass `--preview-features {}` to disable this warning.", PreviewFeatures::PYLOCK ); } diff --git a/crates/uv/src/commands/pip/sync.rs b/crates/uv/src/commands/pip/sync.rs index 1293c120b2c34..c4b41735cd629 100644 --- a/crates/uv/src/commands/pip/sync.rs +++ b/crates/uv/src/commands/pip/sync.rs @@ -140,7 +140,7 @@ pub(crate) async fn pip_sync( if pylock.is_some() { if !preview.is_enabled(PreviewFeatures::PYLOCK) { warn_user!( - "The `--pylock` setting is experimental and may change without warning. Pass `--preview-features {}` to disable this warning.", + "The `--pylock` option is experimental and may change without warning. Pass `--preview-features {}` to disable this warning.", PreviewFeatures::PYLOCK ); }