diff options
Diffstat (limited to 'lib/Term/ReadLine.pm')
-rw-r--r-- | lib/Term/ReadLine.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Term/ReadLine.pm b/lib/Term/ReadLine.pm index c1d17621f1..d251271056 100644 --- a/lib/Term/ReadLine.pm +++ b/lib/Term/ReadLine.pm @@ -6,7 +6,7 @@ If no real package is found, substitutes stubs instead of basic functions. =head1 SYNOPSIS use Term::ReadLine; - my $term = new Term::ReadLine 'Simple Perl calc'; + my $term = Term::ReadLine->new('Simple Perl calc'); my $prompt = "Enter your arithmetic expression: "; my $OUT = $term->OUT || \*STDOUT; while ( defined ($_ = $term->readline($prompt)) ) { @@ -26,7 +26,7 @@ CPAN (under the C<Term::ReadLine::*> namespace). All the supported functions should be called as methods, i.e., either as - $term = new Term::ReadLine 'name'; + $term = Term::ReadLine->new('name'); or as |