We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 055a9ff commit 4e3d7d9Copy full SHA for 4e3d7d9
[refs]
@@ -1,5 +1,5 @@
1
---
2
-refs/heads/master: 3d693d74b814eed6140b9ca29ff01eb3411255a2
+refs/heads/master: 4d2a402555aedd04affc978ef05324df7550fd07
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
refs/heads/snap-stage3: 6c08cc2db4f98e9f07ae7d50338396c4123c2f0a
5
refs/heads/try: 70152ff55722878cde684ee6462c14c65f2c4729
trunk/src/librustdoc/html/render.rs
@@ -220,7 +220,7 @@ pub fn run(mut crate: clean::Crate, dst: Path) {
220
};
221
mkdir(&cx.dst);
222
223
- match crate.module.get_ref().doc_list() {
+ match crate.module.as_ref().map(|m| m.doc_list().unwrap_or(&[])) {
224
Some(attrs) => {
225
for attr in attrs.iter() {
226
match *attr {
0 commit comments