Skip to content

Commit 4373db6

Browse files
committed
rollup merge of #20710: daboross/fix-stable-before-bracket
This changes a line that has `\n#[stable]}` to instead have `}\n#[stable]`. The #[stable] has been before the bracket since b94bcbf. This is a (very) minor change, and I have not built this locally because of my not-so-powerful machine.
2 parents 5d342ac + 801585d commit 4373db6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/liballoc/boxed.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
1+
// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
22
// file at the top-level directory of this distribution and at
33
// http://rust-lang.org/COPYRIGHT.
44
//
@@ -102,8 +102,8 @@ impl<T: ?Sized + Ord> Ord for Box<T> {
102102
fn cmp(&self, other: &Box<T>) -> Ordering {
103103
Ord::cmp(&**self, &**other)
104104
}
105-
106-
#[stable]}
105+
}
106+
#[stable]
107107
impl<T: ?Sized + Eq> Eq for Box<T> {}
108108

109109
#[cfg(stage0)]

0 commit comments

Comments
 (0)