Skip to content

Commit c950c79

Browse files
committed
"CL" changed to "command line"
1 parent d1e7eb8 commit c950c79

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@ fn bisect_nightlies(cfg: &Config, client: &Client) -> Result<BisectionResult, Er
827827
let mut nightly_iter = NightlyFinderIter::new(nightly_date);
828828

829829
// this loop tests nightly toolchains to:
830-
// (1) validate that start date does not have regression (if start date defined on CL)
830+
// (1) validate that start date does not have regression (if defined on command line)
831831
// (2) identify a nightly date range for the bisection routine
832832
//
833833
// The tests here must be constrained to dates after 2015-10-20 (`end_at` date)
@@ -854,9 +854,9 @@ fn bisect_nightlies(cfg: &Config, client: &Client) -> Result<BisectionResult, Er
854854
first_success = Some(nightly_date);
855855
break;
856856
} else if has_start {
857-
// If this date was explicitly defined on CL & has regression,
858-
// then this is an error in the test definition. The user must
859-
// re-define the start date and try again
857+
// If this date was explicitly defined on the command line &
858+
// has regression, then this is an error in the test definition.
859+
// The user must re-define the start date and try again
860860
bail!("the start of the range ({}) must not reproduce the regression", t);
861861
} else {
862862
last_failure = nightly_date;

0 commit comments

Comments
 (0)