diff options
| author | bors <bors@rust-lang.org> | 2018-06-16 19:49:33 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2018-06-16 19:49:33 +0000 |
| commit | b7e94a148d44c662b68781863dee83f97f4170af (patch) | |
| tree | f881ad6adf50ca113d42705fdaf6368c3afc84e3 | |
| parent | b2bbb5a9b7bb7f80972f25761b69c5eae8b38ff0 (diff) | |
| parent | dc943349bd0bcc5ab0b849537c6198ab8f1470b7 (diff) | |
| download | rust-b7e94a148d44c662b68781863dee83f97f4170af.tar.gz rust-b7e94a148d44c662b68781863dee83f97f4170af.zip | |
Auto merge of #51558 - Manishearth:manish-is-stupid, r=oli-obk
Fix my comment on editions me = idiot r? @oli-obk
| -rw-r--r-- | src/libsyntax_pos/edition.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax_pos/edition.rs b/src/libsyntax_pos/edition.rs index 18446c10996..67cd9361ad5 100644 --- a/src/libsyntax_pos/edition.rs +++ b/src/libsyntax_pos/edition.rs @@ -15,7 +15,7 @@ use std::str::FromStr; #[derive(Clone, Copy, Hash, PartialOrd, Ord, Eq, PartialEq, Debug, RustcEncodable, RustcDecodable)] #[non_exhaustive] pub enum Edition { - // editions must be kept in order, newest to oldest + // editions must be kept in order, oldest to newest /// The 2015 edition Edition2015, |
