about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2021-06-03 21:48:54 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2021-06-04 10:10:13 +0200
commit38ec87c1885c62ed8c66320ad24c7e535535e4bd (patch)
tree3c45c8dfe688b2efdd967f41d5600118a1a3b3a1 /library/std/src
parent835150e70288535bc57bb624792229b9dc94991d (diff)
downloadrust-38ec87c1885c62ed8c66320ad24c7e535535e4bd.tar.gz
rust-38ec87c1885c62ed8c66320ad24c7e535535e4bd.zip
Fix invalid align attribute generation on <td> elements
Diffstat (limited to 'library/std/src')
-rw-r--r--library/std/src/time.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/time.rs b/library/std/src/time.rs
index 89addae0789..899cf6841ee 100644
--- a/library/std/src/time.rs
+++ b/library/std/src/time.rs
@@ -82,7 +82,7 @@ pub use core::time::Duration;
 /// Currently, the following system calls are being used to get the current time using `now()`:
 ///
 /// |  Platform |               System call                                            |
-/// |:---------:|:--------------------------------------------------------------------:|
+/// |-----------|----------------------------------------------------------------------|
 /// | SGX       | [`insecure_time` usercall]. More information on [timekeeping in SGX] |
 /// | UNIX      | [clock_gettime (Monotonic Clock)]                                    |
 /// | Darwin    | [mach_absolute_time]                                                 |
@@ -158,7 +158,7 @@ pub struct Instant(time::Instant);
 /// Currently, the following system calls are being used to get the current time using `now()`:
 ///
 /// |  Platform |               System call                                            |
-/// |:---------:|:--------------------------------------------------------------------:|
+/// |-----------|----------------------------------------------------------------------|
 /// | SGX       | [`insecure_time` usercall]. More information on [timekeeping in SGX] |
 /// | UNIX      | [clock_gettime (Realtime Clock)]                                     |
 /// | Darwin    | [gettimeofday]                                                       |