Skip to content

Commit

Permalink
ignore-lexer-test to broken files and remove some tray hyphens
Browse files Browse the repository at this point in the history
I blame @chrismorgan for the hyphens.
  • Loading branch information
emberian committed Jul 21, 2014
1 parent f8fd32e commit 188d889
Show file tree
Hide file tree
Showing 16 changed files with 36 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/libcollections/slice.rs
Expand Up @@ -155,7 +155,7 @@ impl<'a, T: Clone, V: Vector<T>> VectorVector<T> for &'a [V] {
/// a sequence of all possible permutations for an indexed sequence of
/// elements. Each permutation is only a single swap apart.
///
/// The SteinhausJohnsonTrotter algorithm is used.
/// The Steinhaus-Johnson-Trotter algorithm is used.
///
/// Generates even and odd permutations alternately.
///
Expand Down
2 changes: 2 additions & 0 deletions src/libcollections/str.rs
Expand Up @@ -7,6 +7,8 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
// ignore-lexer-test FIXME #15679

/*!
Expand Down
2 changes: 2 additions & 0 deletions src/libcollections/string.rs
Expand Up @@ -7,6 +7,8 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
// ignore-lexer-test FIXME #15679

//! An owned, growable string that enforces that its contents are valid UTF-8.

Expand Down
2 changes: 2 additions & 0 deletions src/libcore/str.rs
Expand Up @@ -7,6 +7,8 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
// ignore-lexer-test FIXME #15679

//! String manipulation
//!
Expand Down
2 changes: 2 additions & 0 deletions src/libcoretest/char.rs
Expand Up @@ -7,6 +7,8 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
// ignore-lexer-test FIXME #15679

use core::char::{escape_unicode, escape_default};

Expand Down
2 changes: 2 additions & 0 deletions src/libgetopts/lib.rs
Expand Up @@ -7,6 +7,8 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
// ignore-lexer-test FIXME #15677

//! Simple getopt alternative.
//!
Expand Down
1 change: 1 addition & 0 deletions src/libgreen/macros.rs
Expand Up @@ -9,6 +9,7 @@
// except according to those terms.

// FIXME: this file probably shouldn't exist
// ignore-lexer-test FIXME #15677

#![macro_escape]

Expand Down
2 changes: 2 additions & 0 deletions src/libregex/lib.rs
Expand Up @@ -7,6 +7,8 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
// ignore-lexer-test FIXME #15679

//! This crate provides a native implementation of regular expressions that is
//! heavily based on RE2 both in syntax and in implementation. Notably,
Expand Down
2 changes: 2 additions & 0 deletions src/librustrt/util.rs
Expand Up @@ -7,6 +7,8 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
// ignore-lexer-test FIXME #15677

use core::prelude::*;

Expand Down
2 changes: 2 additions & 0 deletions src/libserialize/base64.rs
Expand Up @@ -7,6 +7,8 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
// ignore-lexer-test FIXME #15679

//! Base64 binary-to-text encoding
use std::str;
Expand Down
2 changes: 2 additions & 0 deletions src/libserialize/hex.rs
Expand Up @@ -7,6 +7,8 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
// ignore-lexer-test FIXME #15679

//! Hex binary-to-text encoding
use std::str;
Expand Down
2 changes: 2 additions & 0 deletions src/libstd/ascii.rs
Expand Up @@ -7,6 +7,8 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
// ignore-lexer-test FIXME #15679

//! Operations on ASCII strings and characters

Expand Down
2 changes: 2 additions & 0 deletions src/libstd/fmt.rs
Expand Up @@ -7,6 +7,8 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
// ignore-lexer-test FIXME #15679

/*!
Expand Down
2 changes: 2 additions & 0 deletions src/libsyntax/codemap.rs
Expand Up @@ -7,6 +7,8 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
// ignore-lexer-test FIXME #15679

/*!
Expand Down
16 changes: 8 additions & 8 deletions src/libtime/lib.rs
Expand Up @@ -206,28 +206,28 @@ pub fn tzset() {
/// also called a broken-down time value.
#[deriving(Clone, PartialEq, Show)]
pub struct Tm {
/// Seconds after the minute [0, 60]
/// Seconds after the minute - [0, 60]
pub tm_sec: i32,

/// Minutes after the hour [0, 59]
/// Minutes after the hour - [0, 59]
pub tm_min: i32,

/// Hours after midnight [0, 23]
/// Hours after midnight - [0, 23]
pub tm_hour: i32,

/// Day of the month [1, 31]
/// Day of the month - [1, 31]
pub tm_mday: i32,

/// Months since January [0, 11]
/// Months since January - [0, 11]
pub tm_mon: i32,

/// Years since 1900
pub tm_year: i32,

/// Days since Sunday [0, 6]. 0 = Sunday, 1 = Monday, , 6 = Saturday.
/// Days since Sunday - [0, 6]. 0 = Sunday, 1 = Monday, ..., 6 = Saturday.
pub tm_wday: i32,

/// Days since January 1 [0, 365]
/// Days since January 1 - [0, 365]
pub tm_yday: i32,

/// Daylight Saving Time flag.
Expand All @@ -241,7 +241,7 @@ pub struct Tm {
/// for U.S. Pacific Daylight Time, the value is -7*60*60 = -25200.
pub tm_gmtoff: i32,

/// Nanoseconds after the second [0, 10<sup>9</sup> - 1]
/// Nanoseconds after the second - [0, 10<sup>9</sup> - 1]
pub tm_nsec: i32,
}

Expand Down
2 changes: 2 additions & 0 deletions src/libunicode/u_str.rs
Expand Up @@ -7,6 +7,8 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
// ignore-lexer-test FIXME #15679

/*!
* Unicode-intensive string manipulations.
Expand Down

0 comments on commit 188d889

Please sign in to comment.