diff options
| author | Benjamin Peterson <benjamin@python.org> | 2019-02-18 17:33:52 -0800 |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2019-02-18 17:33:52 -0800 |
| commit | b96d6fb4b352e763c24d6b0649e3643d02dc055f (patch) | |
| tree | 7378987eae57bd47b860e3e88b1e9562d59a9afe | |
| parent | 684b09ba7f7b2e163a198fd843128e7260e24e6c (diff) | |
| download | rust-b96d6fb4b352e763c24d6b0649e3643d02dc055f.tar.gz rust-b96d6fb4b352e763c24d6b0649e3643d02dc055f.zip | |
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>( |
