diff options
| author | kennytm <kennytm@gmail.com> | 2019-02-20 01:13:46 +0800 |
|---|---|---|
| committer | kennytm <kennytm@gmail.com> | 2019-02-20 11:59:20 +0800 |
| commit | 2f9fa199d260138ba28178585a5c12df2d230588 (patch) | |
| tree | 2108c56584e2965124310f03c615f47282bc39b8 | |
| parent | 09c85a1d22f6efe5a8e7dac21417cccee3e7ac9a (diff) | |
| parent | b96d6fb4b352e763c24d6b0649e3643d02dc055f (diff) | |
| download | rust-2f9fa199d260138ba28178585a5c12df2d230588.tar.gz rust-2f9fa199d260138ba28178585a5c12df2d230588.zip | |
Rollup merge of #58568 - benjaminp:driver-trans, r=wesleywiser
Fix a transposition in driver.rs.
| -rw-r--r-- | src/librustc_driver/driver.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_driver/driver.rs b/src/librustc_driver/driver.rs index e5b290b55c2..b998b77a76b 100644 --- a/src/librustc_driver/driver.rs +++ b/src/librustc_driver/driver.rs @@ -1172,7 +1172,7 @@ pub fn default_provide_extern(providers: &mut ty::query::Providers) { cstore::provide_extern(providers); } -/// Runs the resolution, typec-hecking, region checking and other +/// Runs the resolution, type-checking, region checking and other /// miscellaneous analysis passes on the crate. Return various /// structures carrying the results of the analysis. pub fn phase_3_run_analysis_passes<'tcx, F, R>( |
