summaryrefslogtreecommitdiff
path: root/fml/lib/IO
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-02-02 17:46:05 +0000
committerfukachan <fukachan>2001-02-02 17:46:05 +0000
commit988bd0bb230c7cf66f21e66e9244b491d255d378 (patch)
tree99be0d57b92ab7de40ba56d6ba52ea0948f1cb39 /fml/lib/IO
parentc4a365ee251cac4cd1e7d6ecad9f4d4026539e1f (diff)
downloadfml8-988bd0bb230c7cf66f21e66e9244b491d255d378.tar.gz
fml8-988bd0bb230c7cf66f21e66e9244b491d255d378.tar.bz2
fml8-988bd0bb230c7cf66f21e66e9244b491d255d378.zip
fix space alignment
Diffstat (limited to 'fml/lib/IO')
-rw-r--r--fml/lib/IO/Adapter/Array.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/fml/lib/IO/Adapter/Array.pm b/fml/lib/IO/Adapter/Array.pm
index 2ea8a497..900aa4af 100644
--- a/fml/lib/IO/Adapter/Array.pm
+++ b/fml/lib/IO/Adapter/Array.pm
@@ -22,7 +22,7 @@ IO::Adapter::Array.pm - emulation of IO for the ARRAY
use IO::Adapter::Array;
- $map = [ 1, 2, 3];
+ $map = [ 1, 2, 3 ];
$obj = new IO::Adapter::Array $map;
$obj->open;
while ($x = $obj->get_next_value) { print $x;}