Skip to content

Commit 0435a46

Browse files
committed
Fix style nitpicks from travis
Remove tabs
1 parent 47690f2 commit 0435a46

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/jemalloc

Submodule jemalloc updated 102 files

src/libcore/char.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -538,8 +538,8 @@ impl Iterator for EscapeDefault {
538538
}
539539
}
540540

541-
fn count(self) -> usize {
542-
match self.state {
541+
fn count(self) -> usize {
542+
match self.state {
543543
EscapeDefaultState::Char(_) => 1,
544544
EscapeDefaultState::Unicode(iter) => iter.count(),
545545
EscapeDefaultState::Done => 0,

src/librustc/front/map/definitions.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use syntax::ast;
1616
use syntax::parse::token::InternedString;
1717
use util::nodemap::NodeMap;
1818

19-
/// A definition, that defines are
19+
/// A definition
2020
#[derive(Clone)]
2121
pub struct Definitions {
2222
data: Vec<DefData>,
@@ -101,7 +101,7 @@ pub enum DefPathData {
101101
/// A struct field
102102
Field(hir::StructFieldKind),
103103
/// Implicit ctor for a tuple-like struct
104-
StructCtor,
104+
StructCtor,
105105
/// Initializer for a constant
106106
Initializer,
107107
/// A pattern binding

0 commit comments

Comments
 (0)