# File lib/facets/more/progressbar.rb, line 226
  def inc (step = 1)
    @current += step
    @current = @total if @current > @total
    show_progress
    @previous = @current
  end