From dc943349bd0bcc5ab0b849537c6198ab8f1470b7 Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Thu, 14 Jun 2018 10:46:50 -0700 Subject: [PATCH] Fix comment on editions --- src/libsyntax_pos/edition.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,