From 801585d75ae410b684ba3c844267c8fc728cb26e Mon Sep 17 00:00:00 2001 From: Dabo Ross Date: Wed, 7 Jan 2015 12:37:07 -0800 Subject: [PATCH] Fix #[stable] coming before } instead of after This changes a line that has `\n#[stable]}` to instead have `}\n#[stable]` --- src/liballoc/boxed.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/liballoc/boxed.rs b/src/liballoc/boxed.rs index d46f18abf97b4..3757a0fbd37ce 100644 --- a/src/liballoc/boxed.rs +++ b/src/liballoc/boxed.rs @@ -1,4 +1,4 @@ -// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT +// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // @@ -102,8 +102,8 @@ impl Ord for Box { fn cmp(&self, other: &Box) -> Ordering { Ord::cmp(&**self, &**other) } - -#[stable]} +} +#[stable] impl Eq for Box {} impl> Hash for Box {