Skip to content

Commit 3ed10b2

Browse files
committed
---
yaml --- r: 16111 b: refs/heads/try c: 862976c h: refs/heads/master i: 16109: c2ac9a8 16107: 2ccbfee 16103: 1f8c991 16095: fe1a6e8 v: v3
1 parent 9b38e2b commit 3ed10b2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
refs/heads/master: 61b1875c16de39c166b0f4d54bba19f9c6777d1a
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5-
refs/heads/try: 1f4b3cfc3639f939b44396c4aa6074a4d60bc5c7
5+
refs/heads/try: 862976c267b3cc7a03efe5b7936b9025227447a4
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/try/src/rustdoc/sectionalize_pass.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,22 +106,22 @@ fn sectionalize(desc: option<str>) -> (option<str>, [doc::section]) {
106106
});
107107
}
108108
none {
109-
alt current_section {
109+
alt copy current_section {
110110
some(section) {
111111
current_section = some({
112112
body: section.body + "\n" + line
113113
with section
114114
});
115115
}
116116
none {
117-
alt new_desc {
117+
new_desc = alt new_desc {
118118
some(desc) {
119-
new_desc = some(desc + "\n" + line);
119+
some(desc + "\n" + line)
120120
}
121121
none {
122-
new_desc = some(line);
122+
some(line)
123123
}
124-
}
124+
};
125125
}
126126
}
127127
}

0 commit comments

Comments
 (0)