ignore-lexer-test to broken files and remove some tray hyphens
I blame @ChrisMorgan for the hyphens.
This commit is contained in:
parent
f8fd32ef9d
commit
188d889aaf
@ -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 Steinhaus–Johnson–Trotter algorithm is used.
|
||||
/// The Steinhaus-Johnson-Trotter algorithm is used.
|
||||
///
|
||||
/// Generates even and odd permutations alternately.
|
||||
///
|
||||
|
@ -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
|
||||
|
||||
/*!
|
||||
|
||||
|
@ -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.
|
||||
|
||||
|
@ -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
|
||||
//!
|
||||
|
@ -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};
|
||||
|
||||
|
@ -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.
|
||||
//!
|
||||
|
@ -9,6 +9,7 @@
|
||||
// except according to those terms.
|
||||
|
||||
// FIXME: this file probably shouldn't exist
|
||||
// ignore-lexer-test FIXME #15677
|
||||
|
||||
#![macro_escape]
|
||||
|
||||
|
@ -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,
|
||||
|
@ -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::*;
|
||||
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
/*!
|
||||
|
||||
|
@ -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
|
||||
|
||||
/*!
|
||||
|
||||
|
@ -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.
|
||||
@ -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,
|
||||
}
|
||||
|
||||
|
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user