aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2021-07-05 10:35:53 +0200
committerTobias Klauser <tobias.klauser@gmail.com>2021-07-08 09:09:53 +0000
commit2ca44fe2213b53ccaf6f555c11858c6e36490624 (patch)
treeb10efdb7f942ce777953fca2835b7518913c85ab /doc
parent5c59e11f5e1fe2e6d5b684f9a348022c07807126 (diff)
downloadgo-2ca44fe2213b53ccaf6f555c11858c6e36490624.tar.gz
go-2ca44fe2213b53ccaf6f555c11858c6e36490624.zip
doc/go1.17: linkify time.UnixMilli and time.UnixMicro
Change-Id: I8503c4649fc42670f13d981f98af480467d6a3e8 Reviewed-on: https://go-review.googlesource.com/c/go/+/332829 Trust: Tobias Klauser <tobias.klauser@gmail.com> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/go1.17.html11
1 files changed, 7 insertions, 4 deletions
diff --git a/doc/go1.17.html b/doc/go1.17.html
index 66b4f48b61..4fa30158bb 100644
--- a/doc/go1.17.html
+++ b/doc/go1.17.html
@@ -1132,10 +1132,13 @@ func Foo() bool {
<p><!-- CL 293349 -->
The new <a href="/pkg/time/#Time.UnixMilli"><code>Time.UnixMilli</code></a> and
- <a href="/pkg/time/#Time.UnixMicro"><code>Time.UnixMicro</code></a> methods return the number of milliseconds and
- microseconds elapsed since January 1, 1970 UTC respectively.<br>
- The new <code>UnixMilli</code> and <code>UnixMicro</code> functions return local Time corresponding to given
- Unix time.
+ <a href="/pkg/time/#Time.UnixMicro"><code>Time.UnixMicro</code></a>
+ methods return the number of milliseconds and microseconds elapsed since
+ January 1, 1970 UTC respectively.
+ <br />
+ The new <a href="/pkg/time/#UnixMilli"><code>UnixMilli</code></a> and
+ <a href="/pkg/time/#UnixMicro"><code>UnixMicro</code></a> functions
+ return the local <code>Time</code> corresponding to the given Unix time.
</p>
<p><!-- CL 300996 -->