summaryrefslogtreecommitdiff
path: root/fml/lib/File
diff options
context:
space:
mode:
authorfukachan <fukachan>2003-01-11 15:14:23 +0000
committerfukachan <fukachan>2003-01-11 15:14:23 +0000
commitaeab7673dc3446541ce8c95afea6a20fd176fa99 (patch)
tree6ac86a2af41211d62b004565f56183353f9d2832 /fml/lib/File
parent9ed29e4247da46292b272e1def3ca52a92f15704 (diff)
downloadfml8-aeab7673dc3446541ce8c95afea6a20fd176fa99.tar.gz
fml8-aeab7673dc3446541ce8c95afea6a20fd176fa99.tar.bz2
fml8-aeab7673dc3446541ce8c95afea6a20fd176fa99.zip
fix comments
Diffstat (limited to 'fml/lib/File')
-rw-r--r--fml/lib/File/SimpleLock.pm4
-rw-r--r--fml/lib/File/Utils.pm6
2 files changed, 5 insertions, 5 deletions
diff --git a/fml/lib/File/SimpleLock.pm b/fml/lib/File/SimpleLock.pm
index 0667e9c9..a0ea1bee 100644
--- a/fml/lib/File/SimpleLock.pm
+++ b/fml/lib/File/SimpleLock.pm
@@ -2,7 +2,7 @@
#
# Copyright (C) 2000,2001,2002 Ken'ichi Fukamachi
#
-# $FML: SimpleLock.pm,v 1.15 2002/12/13 04:19:59 fukachan Exp $
+# $FML: SimpleLock.pm,v 1.16 2002/12/22 03:32:00 fukachan Exp $
#
package File::SimpleLock;
@@ -52,7 +52,7 @@ use Fcntl qw(:DEFAULT :flock);
# Descriptions: standard constructor.
-# Arguments: OBJ($self) HASH_REF($args)
+# Arguments: OBJ($self)
# Side Effects: none
# Return Value: OBJ
sub new
diff --git a/fml/lib/File/Utils.pm b/fml/lib/File/Utils.pm
index b37b1175..30eb30b9 100644
--- a/fml/lib/File/Utils.pm
+++ b/fml/lib/File/Utils.pm
@@ -4,7 +4,7 @@
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: Utils.pm,v 1.18 2002/09/22 14:56:57 fukachan Exp $
+# $FML: Utils.pm,v 1.19 2002/12/22 03:32:00 fukachan Exp $
#
package File::Utils;
@@ -80,7 +80,7 @@ make a directory C<$dir> by the mode C<$mode> recursively.
# Descriptions: "mkdir -p" or "mkdirhier"
-# Arguments: STR($cdir) STR($mode)
+# Arguments: STR($dir) STR($mode)
# Side Effects: set $ErrorString
# Return Value: 1 or UNDEF
sub mkdirhier
@@ -155,11 +155,11 @@ The default search path list is
# Descriptions: search executable named as $file
-# Arguments: STR($file) ARRAY_REF($path_list)
# The "path_list" is an ARRAY_REFERENCE.
# For example,
# search_program('md5');
# search_program('md5', [ '/bin', '/sbin' ]);
+# Arguments: STR($file) ARRAY_REF($path_list)
# Side Effects: none
# Return Value: STR
sub search_program