diff options
| author | Mara Bos <m-ou.se@m-ou.se> | 2020-01-18 13:33:17 +0100 |
|---|---|---|
| committer | Mara Bos <m-ou.se@m-ou.se> | 2020-01-18 13:42:31 +0100 |
| commit | 366f619a49162588770af9f23099ca9407d1992a (patch) | |
| tree | 4ac6b0401edc9b9646a8dc9293cc5a1ab27752d8 | |
| parent | af6282f92a6d4dd9c556535fc40b4b04f531b8a5 (diff) | |
| download | rust-366f619a49162588770af9f23099ca9407d1992a.tar.gz rust-366f619a49162588770af9f23099ca9407d1992a.zip | |
Fix table of syscalls in docs of std::time::SystemTime.
| -rw-r--r-- | src/libstd/time.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/time.rs b/src/libstd/time.rs index 2e3e3b743a4..5bc8fe5ae6d 100644 --- a/src/libstd/time.rs +++ b/src/libstd/time.rs @@ -144,7 +144,7 @@ pub struct Instant(time::Instant); /// /// | Platform | System call | /// |:---------:|:--------------------------------------------------------------------:| -/// | Cloud ABI | [clock_time_get (Realtime Clock)] | +/// | CloudABI | [clock_time_get (Realtime Clock)] | /// | SGX | [`insecure_time` usercall]. More information on [timekeeping in SGX] | /// | UNIX | [clock_gettime (Realtime Clock)] | /// | DARWIN | [gettimeofday] | @@ -152,7 +152,7 @@ pub struct Instant(time::Instant); /// | WASI | [__wasi_clock_time_get (Realtime Clock)] | /// | Windows | [GetSystemTimeAsFileTime] | /// -/// [clock_time_get (Realtime Clock)]: https://github.com/NuxiNL/cloudabi/blob/master/cloudabi.txt +/// [clock_time_get (Realtime Clock)]: https://nuxi.nl/cloudabi/#clock_time_get /// [`insecure_time` usercall]: https://edp.fortanix.com/docs/api/fortanix_sgx_abi/struct.Usercalls.html#method.insecure_time /// [timekeeping in SGX]: https://edp.fortanix.com/docs/concepts/rust-std/#codestdtimecode /// [gettimeofday]: http://man7.org/linux/man-pages/man2/gettimeofday.2.html |
