Skip to content

Commit

Permalink
add missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
pfitzseb committed May 15, 2018
1 parent a1325dd commit 660dd5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/progress.jl
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ name(p, s) = isactive() && Atom.Progress.name(p, s)
Update the string that will be displayed to the right of the progress bar.
Defaults to the linearly extrpolated remaining time based upon the time
Defaults to the linearly extrapolated remaining time based upon the time
difference between registering a progress bar and the latest update.
"""
right_text(p, s) = isactive() && Atom.Progress.right_text(p, s)
Expand All @@ -84,7 +84,7 @@ macro progress(args...)
_progress(args...)
end

_progress(ex) = _progress("", 0.005 ex)
_progress(ex) = _progress("", 0.005, ex)
_progress(name::AbstractString, ex) = _progress(name, 0.005, ex)
_progress(thresh::Real, ex) = _progress("", thresh, ex)

Expand Down

0 comments on commit 660dd5c

Please sign in to comment.