diff options
| author | Yuki Okushi <huyuumi.dev@gmail.com> | 2020-08-07 09:35:29 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-07 09:35:29 +0900 |
| commit | 6f2fa1ef517bbe3ccbae62c40c75f386ad75aa44 (patch) | |
| tree | 0a2c2b937f87665e50eda539b399fa5ed81027f9 | |
| parent | 76086a2d7676e412b3f6b5a55e3fe60dccb5fab8 (diff) | |
| parent | 6eeae7d42013cc5deab74a43010721b98847c80d (diff) | |
| download | rust-6f2fa1ef517bbe3ccbae62c40c75f386ad75aa44.tar.gz rust-6f2fa1ef517bbe3ccbae62c40c75f386ad75aa44.zip | |
Rollup merge of #75232 - leijurv:patch-1, r=jonas-schievink
Fix typo "TraitObligatiom" -> "TraitObligation"
| -rw-r--r-- | src/librustc_trait_selection/traits/select/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_trait_selection/traits/select/mod.rs b/src/librustc_trait_selection/traits/select/mod.rs index 75e11619924..dbb64e57178 100644 --- a/src/librustc_trait_selection/traits/select/mod.rs +++ b/src/librustc_trait_selection/traits/select/mod.rs @@ -440,7 +440,7 @@ impl<'cx, 'tcx> SelectionContext<'cx, 'tcx> { obligation ); - // `previous_stack` stores a `TraitObligatiom`, while `obligation` is + // `previous_stack` stores a `TraitObligation`, while `obligation` is // a `PredicateObligation`. These are distinct types, so we can't // use any `Option` combinator method that would force them to be // the same. |
