diff options
| author | 0xflotus <0xflotus@gmail.com> | 2020-12-27 03:22:23 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-27 03:22:23 +0100 |
| commit | cb177852c1e3521ef203386a67aad2c73e7543ea (patch) | |
| tree | 16a36d6a5d1fa2bae320edbd9faa6c02270b239c | |
| parent | 0fbc0ce3ab75237c4f65022bdb1f8673811dc858 (diff) | |
| download | rust-cb177852c1e3521ef203386a67aad2c73e7543ea.tar.gz rust-cb177852c1e3521ef203386a67aad2c73e7543ea.zip | |
fix: small typo error in chalk/mod.rs
| -rw-r--r-- | compiler/rustc_traits/src/chalk/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_traits/src/chalk/mod.rs b/compiler/rustc_traits/src/chalk/mod.rs index f3a55fec9e4..bd2f87f70a2 100644 --- a/compiler/rustc_traits/src/chalk/mod.rs +++ b/compiler/rustc_traits/src/chalk/mod.rs @@ -98,7 +98,7 @@ crate fn evaluate_goal<'tcx>( let mut solver = chalk_engine::solve::SLGSolver::new(32, None); let db = ChalkRustIrDatabase { interner, reempty_placeholder }; let solution = solver.solve(&db, &lowered_goal); - debug!(?obligation, ?solution, "evaluatate goal"); + debug!(?obligation, ?solution, "evaluate goal"); // Ideally, the code to convert *back* to rustc types would live close to // the code to convert *from* rustc types. Right now though, we don't |
