1
0
mirror of https://github.com/golang/go synced 2024-11-17 14:44:44 -07:00

time: fix a typo in comments

Change-Id: I407d7215d077176678a714ff1446e987bb818f7c
GitHub-Last-Rev: 22012adb3a
GitHub-Pull-Request: golang/go#31988
Reviewed-on: https://go-review.googlesource.com/c/go/+/176797
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Nikita Kryuchkov 2019-05-12 22:03:24 +00:00 committed by Brad Fitzpatrick
parent c583104ee6
commit 2fd97ee25e

View File

@ -940,7 +940,7 @@ overflow:
func Since(t Time) Duration { func Since(t Time) Duration {
var now Time var now Time
if t.wall&hasMonotonic != 0 { if t.wall&hasMonotonic != 0 {
// Common case optimization: if t has monotomic time, then Sub will use only it. // Common case optimization: if t has monotonic time, then Sub will use only it.
now = Time{hasMonotonic, runtimeNano() - startNano, nil} now = Time{hasMonotonic, runtimeNano() - startNano, nil}
} else { } else {
now = Now() now = Now()
@ -953,7 +953,7 @@ func Since(t Time) Duration {
func Until(t Time) Duration { func Until(t Time) Duration {
var now Time var now Time
if t.wall&hasMonotonic != 0 { if t.wall&hasMonotonic != 0 {
// Common case optimization: if t has monotomic time, then Sub will use only it. // Common case optimization: if t has monotonic time, then Sub will use only it.
now = Time{hasMonotonic, runtimeNano() - startNano, nil} now = Time{hasMonotonic, runtimeNano() - startNano, nil}
} else { } else {
now = Now() now = Now()