summaryrefslogtreecommitdiff
path: root/ext/Amiga-ARexx/ARexx.pm
diff options
context:
space:
mode:
Diffstat (limited to 'ext/Amiga-ARexx/ARexx.pm')
-rw-r--r--ext/Amiga-ARexx/ARexx.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/Amiga-ARexx/ARexx.pm b/ext/Amiga-ARexx/ARexx.pm
index 4fe2390d4a..44057680f3 100644
--- a/ext/Amiga-ARexx/ARexx.pm
+++ b/ext/Amiga-ARexx/ARexx.pm
@@ -26,7 +26,7 @@ our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
our @EXPORT = qw(
);
-our $VERSION = '0.02';
+our $VERSION = '0.04';
require XSLoader;
XSLoader::load('Amiga::ARexx', $VERSION);
@@ -209,7 +209,7 @@ The API is loosley modeled on the python arexx module supplied by with AmigaOS4.
# Create a new host
use Amiga::ARexx;
- my $host = Amiga::ARexx->new('HostName' => "PERLREXX" ); );
+ my $host = Amiga::ARexx->new('HostName' => "PERLREXX" );
# Wait for and process rexxcommands
@@ -262,7 +262,7 @@ is no need to access the low level methods directly and they are not exported by
=head2 new
- my $host = Amiga::ARexx->new( HostName => "PERLREXX"); );
+ my $host = Amiga::ARexx->new( HostName => "PERLREXX");
Create an ARexx host for your script / program.