From 6b854381bbc339358e4a2dfe232cad3e5166ac4a Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Tue, 26 Mar 2019 09:11:57 -0700 Subject: [PATCH] Fix a documentation-comment warning. --- cranelift/codegen/src/timing.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cranelift/codegen/src/timing.rs b/cranelift/codegen/src/timing.rs index 16f729f71d..2a2d393803 100644 --- a/cranelift/codegen/src/timing.rs +++ b/cranelift/codegen/src/timing.rs @@ -176,7 +176,7 @@ mod details { } } - /// Information about passes in a single thread. + // Information about passes in a single thread. thread_local! { static CURRENT_PASS: Cell = Cell::new(Pass::None); static PASS_TIME: RefCell = RefCell::new(Default::default());