diff options
| author | bors <bors@rust-lang.org> | 2017-01-22 22:20:12 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2017-01-22 22:20:12 +0000 |
| commit | 3f261ec4faac7ad95bd9835234993236ff800e7c (patch) | |
| tree | 69df60a20682132236712694df72cdb060ace2ed /src | |
| parent | a8fa31029f264988c1dac30778d9cbebdd5eb4d3 (diff) | |
| parent | d59a2afe586f69a6cf2454a205303ee57378c016 (diff) | |
| download | rust-3f261ec4faac7ad95bd9835234993236ff800e7c.tar.gz rust-3f261ec4faac7ad95bd9835234993236ff800e7c.zip | |
Auto merge of #39238 - king6cong:pr, r=frewsxcv
better comment wording
Diffstat (limited to 'src')
| -rw-r--r-- | src/librustc/ty/trait_def.rs | 2 | ||||
| -rw-r--r-- | src/librustc_driver/lib.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc/ty/trait_def.rs b/src/librustc/ty/trait_def.rs index c6d862b23bd..1dc494ca277 100644 --- a/src/librustc/ty/trait_def.rs +++ b/src/librustc/ty/trait_def.rs @@ -26,7 +26,7 @@ pub struct TraitDef { /// If `true`, then this trait had the `#[rustc_paren_sugar]` /// attribute, indicating that it should be used with `Foo()` - /// sugar. This is a temporary thing -- eventually any trait wil + /// sugar. This is a temporary thing -- eventually any trait will /// be usable with the sugar (or without it). pub paren_sugar: bool, diff --git a/src/librustc_driver/lib.rs b/src/librustc_driver/lib.rs index 0ecd12b3a90..ad2aefbb795 100644 --- a/src/librustc_driver/lib.rs +++ b/src/librustc_driver/lib.rs @@ -904,7 +904,7 @@ fn print_flag_list<T>(cmdline_opt: &str, /// should continue, returns a getopts::Matches object parsed from args, /// otherwise returns None. /// -/// The compiler's handling of options is a little complication as it ties into +/// The compiler's handling of options is a little complicated as it ties into /// our stability story, and it's even *more* complicated by historical /// accidents. The current intention of each compiler option is to have one of /// three modes: |
