librustc: Separate most trait bounds with '+'. rs=plussing

This commit is contained in:
Patrick Walton
2013-02-20 17:07:17 -08:00
parent a307608781
commit bf2a225c0b
204 changed files with 729 additions and 726 deletions

View File

@@ -2282,7 +2282,7 @@ pub mod test {
//use util;
use util::testing::check_equal;
fn string_check<T : Eq> (given : &T, expected: &T) {
fn string_check<T:Eq> (given : &T, expected: &T) {
if !(given == expected) {
fail!(fmt!("given %?, expected %?",given,expected));
}