diff options
| author | Dabo Ross <daboross@daboross.net> | 2015-01-07 12:37:07 -0800 |
|---|---|---|
| committer | David Ross <daboross@daboross.net> | 2015-01-07 20:41:54 +0000 |
| commit | 801585d75ae410b684ba3c844267c8fc728cb26e (patch) | |
| tree | 6c3f5898eb72b1d9e074c4b1c689c65f9489b059 /src/liballoc | |
| parent | 9f1ead8fadc56bad30dc74f5cc50d78af4fbc972 (diff) | |
| download | rust-801585d75ae410b684ba3c844267c8fc728cb26e.tar.gz rust-801585d75ae410b684ba3c844267c8fc728cb26e.zip | |
Fix #[stable] coming before } instead of after
This changes a line that has `\n#[stable]}` to instead have `}\n#[stable]`
Diffstat (limited to 'src/liballoc')
| -rw-r--r-- | src/liballoc/boxed.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/liballoc/boxed.rs b/src/liballoc/boxed.rs index d46f18abf97..3757a0fbd37 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<T: ?Sized + Ord> Ord for Box<T> { fn cmp(&self, other: &Box<T>) -> Ordering { Ord::cmp(&**self, &**other) } - -#[stable]} +} +#[stable] impl<T: ?Sized + Eq> Eq for Box<T> {} impl<S: hash::Writer, T: ?Sized + Hash<S>> Hash<S> for Box<T> { |
