Skip to content

Commit f19a2d8

Browse files
committed
---
yaml --- r: 21935 b: refs/heads/snap-stage3 c: b056e98 h: refs/heads/master i: 21933: a37ca7c 21931: 5b19831 21927: b5de5b9 21919: fc7845e v: v3
1 parent 3056f6b commit f19a2d8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: e430a699f2c60890d9b86069fd0c68a70ece7120
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: acc3ec7d6cbfe87382828820da3705adceeea2ae
4+
refs/heads/snap-stage3: b056e98a277ad19bee8ee562e9685e6dc58fb93b
55
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/src/rustdoc/attr_parser.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,14 +132,14 @@ fn parse_hidden(attrs: ~[ast::attribute]) -> bool {
132132
}
133133

134134
#[test]
135-
fn shoulde_parse_hidden_attribute() {
135+
fn should_parse_hidden_attribute() {
136136
let source = ~"#[doc(hidden)]";
137137
let attrs = test::parse_attributes(source);
138138
assert parse_hidden(attrs) == true;
139139
}
140140

141141
#[test]
142-
fn shoulde_not_parse_non_hidden_attribute() {
142+
fn should_not_parse_non_hidden_attribute() {
143143
let source = ~"#[doc = \"\"]";
144144
let attrs = test::parse_attributes(source);
145145
assert parse_hidden(attrs) == false;

0 commit comments

Comments
 (0)