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.
2 parents a0af9ab + 72f995f commit 8b5fb70Copy full SHA for 8b5fb70
src/web/rustdoc.rs
@@ -339,7 +339,7 @@ pub fn rustdoc_html_server_handler(req: &mut Request) -> IronResult<Response> {
339
body_class.push_str(" container-rustdoc");
340
}
341
342
- rendering_time.step("serve html");
+ rendering_time.step("find latest path");
343
344
let latest_release = crate_details.latest_release();
345
@@ -367,6 +367,8 @@ pub fn rustdoc_html_server_handler(req: &mut Request) -> IronResult<Response> {
367
format!("/crate/{}/{}", name, latest_version)
368
};
369
370
+ rendering_time.step("serve html");
371
+
372
// The path within this crate version's rustdoc output
373
let inner_path = {
374
let mut inner_path = req_path.clone();
0 commit comments