Browse Source

Add comment for UnmarshalJSON

Carson Hoffman 3 năm trước cách đây
mục cha
commit
bd34c3c66d
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 2 0
      structs.go

+ 2 - 0
structs.go

@@ -817,6 +817,8 @@ type TooManyRequests struct {
 	RetryAfter time.Duration `json:"retry_after"`
 }
 
+// UnmarshalJSON helps support translation of a milliseconds-based float
+// into a time.Duration on TooManyRequests.
 func (t *TooManyRequests) UnmarshalJSON(b []byte) error {
 	u := struct {
 		Bucket     string  `json:"bucket"`