diff options
| author | bors <bors@rust-lang.org> | 2023-09-03 03:37:27 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-09-03 03:37:27 +0000 |
| commit | 33e796bbe1eaeadb3146060d7b47b97865582d52 (patch) | |
| tree | ec76b85af6d4ef4f45696f6807b15e92991331d3 | |
| parent | 3ec4b3bc8c18fc217cd8d90426024f1ec1fd4a6a (diff) | |
| parent | 42e550781c131595efff9a8f3632b32102edbbee (diff) | |
| download | rust-33e796bbe1eaeadb3146060d7b47b97865582d52.tar.gz rust-33e796bbe1eaeadb3146060d7b47b97865582d52.zip | |
Auto merge of #115441 - catandcoder:master, r=workingjubilee
fix the repetitive word
| -rw-r--r-- | compiler/rustc_trait_selection/src/solve/eval_ctxt.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_trait_selection/src/solve/eval_ctxt.rs b/compiler/rustc_trait_selection/src/solve/eval_ctxt.rs index 5c2cbe39953..63ae83c8ef4 100644 --- a/compiler/rustc_trait_selection/src/solve/eval_ctxt.rs +++ b/compiler/rustc_trait_selection/src/solve/eval_ctxt.rs @@ -537,7 +537,7 @@ impl<'a, 'tcx> EvalCtxt<'a, 'tcx> { /// Iterate over all added goals: returning `Ok(Some(_))` in case we can stop rerunning. /// - /// Goals for the next step get directly added the the nested goals of the `EvalCtxt`. + /// Goals for the next step get directly added to the nested goals of the `EvalCtxt`. fn evaluate_added_goals_step(&mut self) -> Result<Option<Certainty>, NoSolution> { let tcx = self.tcx(); let mut goals = core::mem::replace(&mut self.nested_goals, NestedGoals::new()); |
