Rollup merge of #81164 - eltociear:patch-5, r=jonas-schievink

Fix typo in simplify.rs

prexisting -> preexisting
This commit is contained in:
Guillaume Gomez 2021-01-19 10:28:00 +01:00 committed by GitHub
commit 2f1d5c4d40
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,7 +55,7 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
// * the bindings from the previous iteration of the loop is prepended to the bindings from
// the current iteration (in the implementation this is done by mem::swap and extend)
// * after all iterations, these new bindings are then appended to the bindings that were
// prexisting (i.e. `candidate.binding` when the function was called).
// preexisting (i.e. `candidate.binding` when the function was called).
//
// example:
// candidate.bindings = [1, 2, 3]