Skip to content

Commit e01cb0e

Browse files
committed
Mark comments as regular, not doc
1 parent 1a39364 commit e01cb0e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/rt/mod.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ where
7373
trace!(thread = ?id, "spawn");
7474

7575
Scheduler::spawn(Box::new(move || {
76-
/// the given closure `f` may panic when executed.
77-
/// when this happens, we still want to ensure that
78-
/// thread locals are destructed. therefore, we set
79-
/// up a guard that is dropped as part of the unwind
80-
/// logic when `f` panics.
76+
// the given closure `f` may panic when executed.
77+
// when this happens, we still want to ensure that
78+
// thread locals are destructed. therefore, we set
79+
// up a guard that is dropped as part of the unwind
80+
// logic when `f` panics.
8181
struct PanicGuard;
8282
impl Drop for PanicGuard {
8383
fn drop(&mut self) {

0 commit comments

Comments
 (0)