summaryrefslogtreecommitdiff
path: root/perl/Git.pm
diff options
context:
space:
mode:
authorPetr Baudis <pasky@suse.cz>2006-06-25 01:54:26 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-07-03 00:14:42 (GMT)
commit24c4b7143639cc821b6d06f9e125429e65dad8cd (patch)
treedbdce1c44b2e96893cb6fc895efb6727a93f5332 /perl/Git.pm
parenta6065b548fc74ce4d8a655e17bfb1dba39540464 (diff)
downloadgit-24c4b7143639cc821b6d06f9e125429e65dad8cd.zip
git-24c4b7143639cc821b6d06f9e125429e65dad8cd.tar.gz
git-24c4b7143639cc821b6d06f9e125429e65dad8cd.tar.bz2
Git.pm: Swap hash_object() parameters
I'm about to introduce get_object() and it will be better for consistency if the object type always goes first. And writing 'blob' there explicitly is not much bother. Signed-off-by: Petr Baudis <pasky@suse.cz> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'perl/Git.pm')
-rw-r--r--perl/Git.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/perl/Git.pm b/perl/Git.pm
index 6173043..5ec7ef8 100644
--- a/perl/Git.pm
+++ b/perl/Git.pm
@@ -485,13 +485,13 @@ sub wc_chdir {
}
-=item hash_object ( FILENAME [, TYPE ] )
+=item hash_object ( TYPE, FILENAME )
-=item hash_object ( FILEHANDLE [, TYPE ] )
+=item hash_object ( TYPE, FILEHANDLE )
Compute the SHA1 object id of the given C<FILENAME> (or data waiting in
-C<FILEHANDLE>) considering it is of the C<TYPE> object type (C<blob>
-(default), C<commit>, C<tree>).
+C<FILEHANDLE>) considering it is of the C<TYPE> object type (C<blob>,
+C<commit>, C<tree>).
In case of C<FILEHANDLE> passed instead of file name, all the data
available are read and hashed, and the filehandle is automatically