Skip to content

Commit 6ac3ccb

Browse files
Rollup merge of rust-lang#85974 - GuillaumeGomez:td-align, r=jsha
td align attribute This is a follow-up of rust-lang#85972. I have put this one on its own because it changes the display: ![Screenshot from 2021-06-03 21-49-11](https://user-images.githubusercontent.com/3050060/120703622-d533d280-c4b5-11eb-9519-ea1131a40bee.png) Without align: ![Screenshot from 2021-06-03 21-49-15](https://user-images.githubusercontent.com/3050060/120703623-d5cc6900-c4b5-11eb-95f9-878d3915c7fb.png) I also opened an issue about it: pulldown-cmark/pulldown-cmark#533. However, I'm not sure if this is the right course of action... Should we instead ignore the warning? r? ``@jsha``
2 parents 17a8766 + 03ef6af commit 6ac3ccb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

std/src/time.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ pub use core::time::Duration;
8282
/// Currently, the following system calls are being used to get the current time using `now()`:
8383
///
8484
/// | Platform | System call |
85-
/// |:---------:|:--------------------------------------------------------------------:|
85+
/// |-----------|----------------------------------------------------------------------|
8686
/// | SGX | [`insecure_time` usercall]. More information on [timekeeping in SGX] |
8787
/// | UNIX | [clock_gettime (Monotonic Clock)] |
8888
/// | Darwin | [mach_absolute_time] |
@@ -158,7 +158,7 @@ pub struct Instant(time::Instant);
158158
/// Currently, the following system calls are being used to get the current time using `now()`:
159159
///
160160
/// | Platform | System call |
161-
/// |:---------:|:--------------------------------------------------------------------:|
161+
/// |-----------|----------------------------------------------------------------------|
162162
/// | SGX | [`insecure_time` usercall]. More information on [timekeeping in SGX] |
163163
/// | UNIX | [clock_gettime (Realtime Clock)] |
164164
/// | Darwin | [gettimeofday] |

0 commit comments

Comments
 (0)