Skip to content

Commit b5d9505

Browse files
committed
---
yaml --- r: 103942 b: refs/heads/try c: b91b6a7 h: refs/heads/master v: v3
1 parent b42e530 commit b5d9505

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 62f1d68439dcfd509eaca29887afa97f22938373
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 6e7f170fedd3c526a643c0b2d13863acd982be02
5-
refs/heads/try: 813886b22ccd0976db03c1bfcbb9738b5b7c41db
5+
refs/heads/try: b91b6a746b8c9ba0b50a01e5e27f7e3baa87b069
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/src/libstd/ascii.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010

1111
//! Operations on ASCII strings and characters
1212
13-
use to_str::{ToStr,IntoStr};
13+
use to_str::{ToStr, IntoStr};
1414
use str;
1515
use str::Str;
1616
use str::StrSlice;
1717
use str::OwnedStr;
1818
use container::Container;
1919
use cast;
2020
use iter::Iterator;
21-
use vec::{ImmutableVector,MutableVector,Vector};
21+
use vec::{ImmutableVector, MutableVector, Vector};
2222
use to_bytes::IterBytes;
23-
use option::{Option,Some,None};
23+
use option::{Option, Some, None};
2424

2525
/// Datatype to hold one ascii character. It wraps a `u8`, with the highest bit always zero.
2626
#[deriving(Clone, Eq, Ord, TotalOrd, TotalEq)]

branches/try/src/libstd/cell.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010

1111
//! Types dealing with dynamic mutability
1212
13-
use clone::{Clone,DeepClone};
13+
use clone::{Clone, DeepClone};
1414
use cmp::Eq;
1515
use ops::Drop;
16-
use option::{None,Option,Some};
16+
use option::{None, Option, Some};
1717
use cast;
1818
use kinds::{marker, Pod};
1919

branches/try/src/libstd/local_data.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ local_data::get(key_vector, |opt| assert_eq!(*opt.unwrap(), ~[4]));
4141
// magic.
4242

4343
use cast;
44-
use option::{None,Option,Some};
45-
use vec::{ImmutableVector,MutableVector,OwnedVector};
44+
use option::{None, Option, Some};
45+
use vec::{ImmutableVector, MutableVector, OwnedVector};
4646
use iter::{Iterator};
4747
use rt::task::{Task, LocalStorage};
4848
use util::replace;

branches/try/src/libstd/reference.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//! Utilities for references
1212
1313
#[cfg(not(test))]
14-
use cmp::{Eq,Ord,Ordering,TotalEq,TotalOrd};
14+
use cmp::{Eq, Ord, Ordering, TotalEq, TotalOrd};
1515

1616
// Equality for region pointers
1717
#[cfg(not(test))]

branches/try/src/libstd/run.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ use io::process;
2020
use io;
2121
use libc::{pid_t, c_int};
2222
use libc;
23-
use option::{None,Option,Some};
23+
use option::{None, Option, Some};
2424
use task::spawn;
25-
use path::{Path,GenericPath};
25+
use path::{Path, GenericPath};
2626
use result::Ok;
2727
use str::Str;
2828
use vec::Vector;

branches/try/src/libstd/trie.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@
1010

1111
//! Ordered containers with integer keys, implemented as radix tries (`TrieSet` and `TrieMap` types)
1212
13-
use option::{None,Option,Some};
14-
use container::{Container,Map,Mutable,MutableMap};
15-
use iter::{Extendable,FromIterator,Iterator};
13+
use option::{None, Option, Some};
14+
use container::{Container, Map, Mutable, MutableMap};
15+
use iter::{Extendable, FromIterator, Iterator};
1616
use mem;
1717
use uint;
1818
use util::replace;
1919
use unstable::intrinsics::init;
2020
use vec;
2121
use ptr::RawPtr;
22-
use vec::{ImmutableVector,Items,MutableVector,MutItems,OwnedVector};
22+
use vec::{ImmutableVector, Items, MutableVector, MutItems, OwnedVector};
2323

2424
// FIXME: #5244: need to manually update the TrieNode constructor
2525
static SHIFT: uint = 4;

branches/try/src/libstd/unit.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
1313
#[cfg(not(test))]
1414
use default::Default;
15-
use cmp::{Eq,Equal,Ord,Ordering,TotalEq,TotalOrd};
15+
use cmp::{Eq, Equal, Ord, Ordering, TotalEq, TotalOrd};
1616

1717
#[cfg(not(test))]
1818
impl Eq for () {

0 commit comments

Comments
 (0)