1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
Description: fix spelling mistakes
Origin: vendor
Forwarded: no
Author: gregor herrmann <gregoa@debian.org>
Last-Update: 2011-02-11
--- a/LiveJournal.pm
+++ b/LiveJournal.pm
@@ -242,7 +242,7 @@
}
$self->friends($hash{'friend'});
} else {
- carp ("LiveJournal::Friend->parse() requires an arguement.");
+ carp ("LiveJournal::Friend->parse() requires an argument.");
}
}
@@ -632,7 +632,7 @@
}
}
} else {
- carp ("LiveJournal::->parse_login() requires an arguement.");
+ carp ("LiveJournal::->parse_login() requires an argument.");
}
}
@@ -986,7 +986,7 @@
=item get ([ [ FRIENDOF ] [, GROUPS ] ])
-Takes two optional arguements. If C<FRIENDOF> is set to 1, you will also
+Takes two optional arguments. If C<FRIENDOF> is set to 1, you will also
get back the info from the "friendof" mode. If C<GROUPS> is set to 1, you
will get the info from the "getfriendgroups" mode. This method returns a
hash reference which should be passed to B<parse()> to be more
@@ -995,7 +995,7 @@
=item parse (FRIENDS)
-Takes one arguement: the hash reference returned from B<get()>.
+Takes one argument: the hash reference returned from B<get()>.
Returns a hash of lists of hashes containing the info (user, name, fg,
bg, etc) for each friend such as:
|