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