@@ -290,7 +290,7 @@ impl<T:Copy> Clone for Cell<T> {
290
290
}
291
291
292
292
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
293
- impl < T : Default > Default for Cell < T > {
293
+ impl < T : Default > Default for Cell < T > {
294
294
/// Creates a `Cell<T>`, with the `Default` value for T.
295
295
#[ inline]
296
296
fn default ( ) -> Cell < T > {
@@ -299,18 +299,18 @@ impl<T:Default> Default for Cell<T> {
299
299
}
300
300
301
301
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
302
- impl < T : PartialEq + Copy > PartialEq for Cell < T > {
302
+ impl < T : PartialEq + Copy > PartialEq for Cell < T > {
303
303
#[ inline]
304
304
fn eq ( & self , other : & Cell < T > ) -> bool {
305
305
self . get ( ) == other. get ( )
306
306
}
307
307
}
308
308
309
309
#[ stable( feature = "cell_eq" , since = "1.2.0" ) ]
310
- impl < T : Eq + Copy > Eq for Cell < T > { }
310
+ impl < T : Eq + Copy > Eq for Cell < T > { }
311
311
312
312
#[ stable( feature = "cell_ord" , since = "1.10.0" ) ]
313
- impl < T : PartialOrd + Copy > PartialOrd for Cell < T > {
313
+ impl < T : PartialOrd + Copy > PartialOrd for Cell < T > {
314
314
#[ inline]
315
315
fn partial_cmp ( & self , other : & Cell < T > ) -> Option < Ordering > {
316
316
self . get ( ) . partial_cmp ( & other. get ( ) )
@@ -338,7 +338,7 @@ impl<T:PartialOrd + Copy> PartialOrd for Cell<T> {
338
338
}
339
339
340
340
#[ stable( feature = "cell_ord" , since = "1.10.0" ) ]
341
- impl < T : Ord + Copy > Ord for Cell < T > {
341
+ impl < T : Ord + Copy > Ord for Cell < T > {
342
342
#[ inline]
343
343
fn cmp ( & self , other : & Cell < T > ) -> Ordering {
344
344
self . get ( ) . cmp ( & other. get ( ) )
@@ -1008,7 +1008,7 @@ impl<T: Clone> Clone for RefCell<T> {
1008
1008
}
1009
1009
1010
1010
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1011
- impl < T : Default > Default for RefCell < T > {
1011
+ impl < T : Default > Default for RefCell < T > {
1012
1012
/// Creates a `RefCell<T>`, with the `Default` value for T.
1013
1013
#[ inline]
1014
1014
fn default ( ) -> RefCell < T > {
0 commit comments