Skip to content

Commit 7852000

Browse files
Nemo157Joshua Nelson
and
Joshua Nelson
committed
Apply suggestions from code review
Co-authored-by: Joshua Nelson <[email protected]>
1 parent 5397374 commit 7852000

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/index/crates.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ impl Crates {
2525
if let Ok(krate) = Crate::from_slice(blob.content()) {
2626
f(krate);
2727
} else {
28-
log::warn!("Not a crate '{}'", entry.name().unwrap());
28+
log::warn!("not a crate '{}'", entry.name().unwrap());
2929
}
3030
}
3131
Result::<(), failure::Error>::Ok(())
3232
})()
3333
.with_context(|_| {
3434
format!(
35-
"Loading crate details from '{}'",
35+
"loading crate details from '{}'",
3636
entry.name().unwrap_or("<unknown>")
3737
)
3838
});

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
#![allow(clippy::cognitive_complexity)]
44

55
pub use self::build_queue::BuildQueue;
6-
76
pub use self::config::Config;
87
pub use self::context::Context;
98
pub use self::docbuilder::options::DocBuilderOptions;

0 commit comments

Comments
 (0)