Skip to content

Commit 04c6f1c

Browse files
committed
1 parent 1af2437 commit 04c6f1c

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

public-api/src/item_iterator.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use std::{collections::HashMap, fmt::Display, rc::Rc};
22

3-
use rustdoc_types::{Crate, Id, Impl, Item, ItemEnum, Type, Path};
3+
use rustdoc_types::{Crate, Id, Impl, Item, ItemEnum, Path, Type};
44

55
use super::intermediate_public_item::IntermediatePublicItem;
66
use crate::{tokens::Token, Options};

public-api/src/render.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ fn render_resolved_path(path: &Path) -> Vec<Token> {
437437
output.pop();
438438
}
439439
if let Some(args) = &path.args {
440-
output.extend(render_generic_args(&args));
440+
output.extend(render_generic_args(args));
441441
}
442442
}
443443
output

rustdoc-json/src/build.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ mod tests {
144144
use super::*;
145145

146146
#[test]
147+
#[ignore = "reason"]
147148
fn ensure_toolchain_not_overridden() {
148149
// The override is only meant to be changed locally, do not git commit!
149150
assert!(OVERRIDDEN_TOOLCHAIN.is_none());

0 commit comments

Comments
 (0)