Skip to content

Commit e49c159

Browse files
committed
fmt
1 parent 70b4c5c commit e49c159

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pi.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -292,19 +292,19 @@ impl RawCondvar for Condvar {
292292
}
293293

294294
fn wait<T, M>(&self, guard: &mut MutexGuard<T>) {
295-
self.wait(guard)
295+
self.wait(guard);
296296
}
297297

298298
fn wait_for<T, M>(&self, guard: &mut MutexGuard<T>, timeout: Duration) -> WaitTimeoutResult {
299299
self.wait_for(guard, timeout)
300300
}
301301

302302
fn notify_one(&self) {
303-
self.notify_one()
303+
self.notify_one();
304304
}
305305

306306
fn notify_all(&self) {
307-
self.notify_all()
307+
self.notify_all();
308308
}
309309
}
310310

0 commit comments

Comments
 (0)