Skip to content

Commit 089a65b

Browse files
committed
---
yaml --- r: 28621 b: refs/heads/try c: b056e98 h: refs/heads/master i: 28619: fdd486b v: v3
1 parent 644bb2b commit 089a65b

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
@@ -2,7 +2,7 @@
22
refs/heads/master: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
5-
refs/heads/try: acc3ec7d6cbfe87382828820da3705adceeea2ae
5+
refs/heads/try: b056e98a277ad19bee8ee562e9685e6dc58fb93b
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df

branches/try/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)