diff options
| author | Aaron Hill <aa1ronham@gmail.com> | 2020-01-07 10:53:04 -0500 |
|---|---|---|
| committer | Aaron Hill <aa1ronham@gmail.com> | 2020-01-13 05:00:55 -0500 |
| commit | 92d86cc9b8bbd744c5eebf3718a9dc87576b786c (patch) | |
| tree | 646793a2e3e0e04ffac36d7f193e1597346fd7b2 | |
| parent | e1fc22c4eba6e07a5549c74b197fbaa53f7b29e1 (diff) | |
| download | rust-92d86cc9b8bbd744c5eebf3718a9dc87576b786c.tar.gz rust-92d86cc9b8bbd744c5eebf3718a9dc87576b786c.zip | |
Fix typo
| -rw-r--r-- | src/librustc_mir/transform/const_prop.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_mir/transform/const_prop.rs b/src/librustc_mir/transform/const_prop.rs index 48ab24a14c7..35dbf2f7eaa 100644 --- a/src/librustc_mir/transform/const_prop.rs +++ b/src/librustc_mir/transform/const_prop.rs @@ -74,7 +74,7 @@ impl<'tcx> MirPass<'tcx> for ConstProp { return; } - // Check if it's even possible to satisy the 'where' clauses + // Check if it's even possible to satisfy the 'where' clauses // for this item. // This branch will never be taken for any normal function. // However, it's possible to `#!feature(trivial_bounds)]` to write |
