Codebase list golang-github-vbauerster-mpb / ef801c4
typo fix Vladimir Bauer 8 years ago
1 changed file(s) with 2 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
211211
212212 // ETA returns exponential-weighted-moving-average ETA decorator.
213213 //
214 // `style` onfe of [ET_STYLE_GO|ET_STYLE_HHMMSS|ET_STYLE_HHMM|ET_STYLE_MMSS]
214 // `style` one of [ET_STYLE_GO|ET_STYLE_HHMMSS|ET_STYLE_HHMM|ET_STYLE_MMSS]
215215 //
216216 // `age` is a decay factor alpha for underlying ewma.
217217 // General rule of thumb, for the best value:
287287
288288 // Elapsed returns elapsed time decorator.
289289 //
290 // `style` onfe of [ET_STYLE_GO|ET_STYLE_HHMMSS|ET_STYLE_HHMM|ET_STYLE_MMSS]
290 // `style` one of [ET_STYLE_GO|ET_STYLE_HHMMSS|ET_STYLE_HHMM|ET_STYLE_MMSS]
291291 //
292292 // `wc` optional WC config
293293 func Elapsed(style int, wc ...WC) Decorator {