Skip to content

Commit b05cbeb

Browse files
committed
handle comments
1 parent df1c4a3 commit b05cbeb

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

crates/aptos/src/common/types.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1164,7 +1164,7 @@ pub struct MovePackageDir {
11641164

11651165
/// ...or --compiler COMPILER_VERSION
11661166
/// Specify the version of the compiler.
1167-
/// Defaults to the latest stable compiler version
1167+
/// Defaults to the latest stable compiler version (at least 2)
11681168
#[clap(long, value_parser = clap::value_parser!(CompilerVersion),
11691169
alias = "compiler",
11701170
default_value = LATEST_STABLE_COMPILER_VERSION,
@@ -1175,7 +1175,7 @@ pub struct MovePackageDir {
11751175

11761176
/// ...or --language LANGUAGE_VERSION
11771177
/// Specify the language version to be supported.
1178-
/// Defaults to the latest stable language version
1178+
/// Defaults to the latest stable language version (at least 2)
11791179
#[clap(long, value_parser = clap::value_parser!(LanguageVersion),
11801180
alias = "language",
11811181
default_value = LATEST_STABLE_LANGUAGE_VERSION,

crates/aptos/src/move_tool/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -909,7 +909,6 @@ impl IncludedArtifacts {
909909
experiments.append(&mut move_options.experiments.clone());
910910
experiments.append(&mut more_experiments);
911911

912-
// TODO(#14441): Remove `None |` here when we update default CompilerVersion
913912
if matches!(
914913
move_options.compiler_version,
915914
Option::None | Some(CompilerVersion::V1)

0 commit comments

Comments
 (0)