Another minor POD update.

This commit is contained in:
Jonathan Hall 2014-09-15 13:31:03 -05:00 committed by Jared Johnson
parent 6ed109914c
commit 1253e73a4d

View File

@ -724,8 +724,8 @@ requested values as C<@list>, example:
Arguments:
my ($self,$transaction,$key) = @_;
# $key: the requested config item(s)
my ($self,$transaction,@keys) = @_;
# @keys: the requested config item(s)
B<NOTE:> C<$transaction> may be C<undef>, depending when / where this hook
is called. It's probably best not to try acessing it.
@ -756,8 +756,8 @@ requested values as C<@list>, example:
Arguments:
my ($self,$transaction,$user,$key) = @_;
# $key: the requested config item(s)
my ($self,$transaction,$user,@keys) = @_;
# @keys: the requested config item(s)
Example plugin is F<user_config> from the qpsmtpd distribution.