Skip to content

Commit

Permalink
Better names?
Browse files Browse the repository at this point in the history
  • Loading branch information
Filip Sergot committed Apr 15, 2012
1 parent 1e7895f commit bc1ddee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/e2.p6
Expand Up @@ -2,7 +2,7 @@ use v6;
use Term::ProgressBar;

my $count = 100_000;
my $bar = Term::ProgressBar.new( :blocka<->, :blockb<->, :style<|>, count => $count, :name<Testing..>, width => 25, :p );
my $bar = Term::ProgressBar.new( :left<->, :right<->, :style<|>, count => $count, :name<Testing..>, width => 25, :p );

for 1..$count {
$bar.update($_);
Expand Down
2 changes: 1 addition & 1 deletion examples/e3.p6
Expand Up @@ -2,7 +2,7 @@ use v6;
use Term::ProgressBar;

my $count = 100_000;
my $bar = Term::ProgressBar.new( :blocka<->, :blockb<->, :style<|>, count => $count, :name<Testing..>, width => 50, :p, :t );
my $bar = Term::ProgressBar.new( :left<:>, :right<:>, :style<.>, count => $count, :name<Testing..>, width => 50, :p, :t );

for 1..$count {
$bar.update($_);
Expand Down

0 comments on commit bc1ddee

Please sign in to comment.