Skip to content

Commit 3722395

Browse files
committed
---
yaml --- r: 107762 b: refs/heads/dist-snap c: 0c081af h: refs/heads/master v: v3
1 parent f5665bc commit 3722395

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: f64fdf524a434f0e5cd0bc91d09c144723f3c90d
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9-
refs/heads/dist-snap: 86426015512b42ed29411c32af8292691df58031
9+
refs/heads/dist-snap: 0c081afabd8af8ddda708d0f2e8890d31d33d66f
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1212
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/src/etc/vim/syntax/rust.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ syn keyword rustTrait Tuple9 Tuple10 Tuple11 Tuple12
9999
syn keyword rustTrait ImmutableTuple1 ImmutableTuple2 ImmutableTuple3 ImmutableTuple4
100100
syn keyword rustTrait ImmutableTuple5 ImmutableTuple6 ImmutableTuple7 ImmutableTuple8
101101
syn keyword rustTrait ImmutableTuple9 ImmutableTuple10 ImmutableTuple11 ImmutableTuple12
102-
syn keyword rustTrait ImmutableEqVector ImmutableTotalOrdVector ImmutableCopyableVector
102+
syn keyword rustTrait ImmutableEqVector ImmutableTotalOrdVector ImmutableCloneableVector
103103
syn keyword rustTrait OwnedVector OwnedCloneableVector OwnedEqVector MutableVector
104104
syn keyword rustTrait Vector VectorVector CloneableVector ImmutableVector
105105

branches/dist-snap/src/libstd/prelude.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ pub use tuple::{ImmutableTuple9, ImmutableTuple10, ImmutableTuple11, ImmutableTu
7575
pub use tuple::{Tuple1, Tuple2, Tuple3, Tuple4};
7676
pub use tuple::{Tuple5, Tuple6, Tuple7, Tuple8};
7777
pub use tuple::{Tuple9, Tuple10, Tuple11, Tuple12};
78-
pub use vec::{ImmutableEqVector, ImmutableTotalOrdVector, ImmutableCopyableVector};
78+
pub use vec::{ImmutableEqVector, ImmutableTotalOrdVector, ImmutableCloneableVector};
7979
pub use vec::{OwnedVector, OwnedCloneableVector,OwnedEqVector};
8080
pub use vec::{MutableVector, MutableTotalOrdVector};
8181
pub use vec::{Vector, VectorVector, CloneableVector, ImmutableVector};

branches/dist-snap/src/libstd/vec.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1261,7 +1261,7 @@ impl<'a, T: TotalOrd> ImmutableTotalOrdVector<T> for &'a [T] {
12611261
}
12621262

12631263
/// Extension methods for vectors containing `Clone` elements.
1264-
pub trait ImmutableCopyableVector<T> {
1264+
pub trait ImmutableCloneableVector<T> {
12651265
/**
12661266
* Partitions the vector into those that satisfies the predicate, and
12671267
* those that do not.
@@ -1273,7 +1273,7 @@ pub trait ImmutableCopyableVector<T> {
12731273
fn permutations(self) -> Permutations<T>;
12741274
}
12751275

1276-
impl<'a,T:Clone> ImmutableCopyableVector<T> for &'a [T] {
1276+
impl<'a,T:Clone> ImmutableCloneableVector<T> for &'a [T] {
12771277
#[inline]
12781278
fn partitioned(&self, f: |&T| -> bool) -> (~[T], ~[T]) {
12791279
let mut lefts = ~[];

0 commit comments

Comments
 (0)