File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -423,10 +423,10 @@ pub fn park() {
423
423
/// the specified duration has been reached (may wake spuriously).
424
424
///
425
425
/// The semantics of this function are equivalent to `park()` except that the
426
- /// thread will be blocked for roughly no longer than *ms* . This method
426
+ /// thread will be blocked for roughly no longer than `ms` . This method
427
427
/// should not be used for precise timing due to anomalies such as
428
428
/// preemption or platform differences that may not cause the maximum
429
- /// amount of time waited to be precisely *ms* long.
429
+ /// amount of time waited to be precisely `ms` long.
430
430
///
431
431
/// See the module doc for more detail.
432
432
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -439,10 +439,10 @@ pub fn park_timeout_ms(ms: u32) {
439
439
/// the specified duration has been reached (may wake spuriously).
440
440
///
441
441
/// The semantics of this function are equivalent to `park()` except that the
442
- /// thread will be blocked for roughly no longer than * dur* . This method
442
+ /// thread will be blocked for roughly no longer than ` dur` . This method
443
443
/// should not be used for precise timing due to anomalies such as
444
444
/// preemption or platform differences that may not cause the maximum
445
- /// amount of time waited to be precisely * dur* long.
445
+ /// amount of time waited to be precisely ` dur` long.
446
446
///
447
447
/// See the module doc for more detail.
448
448
///
You can’t perform that action at this time.
0 commit comments