You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While working on #42 I came across several instances where we're using int data types when we should just be using time.Duration. This makes things harder to reason about, as you have to continually ask "is this time in milliseconds? seconds?", etc.
Unifying these values around time.Duration would be a big win.
The text was updated successfully, but these errors were encountered:
While working on #42 I came across several instances where we're using
int
data types when we should just be usingtime.Duration
. This makes things harder to reason about, as you have to continually ask "is this time in milliseconds? seconds?", etc.Unifying these values around
time.Duration
would be a big win.The text was updated successfully, but these errors were encountered: