diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-01-08 11:17:43 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-01-08 11:17:43 +0000 |
commit | ae83f3772b2dd371e676035c6714025e89d7e08f (patch) | |
tree | deb53c3412be3548f3e8318d72e30552f35949e0 /lib/User | |
parent | f3a6e3356179a29b3e34d4dbbd1c3cc37167e95d (diff) | |
download | perl-ae83f3772b2dd371e676035c6714025e89d7e08f.tar.gz |
More doc fixes from Abigail.
p4raw-id: //depot/cfgperl@2587
Diffstat (limited to 'lib/User')
-rw-r--r-- | lib/User/grent.pm | 2 | ||||
-rw-r--r-- | lib/User/pwent.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/User/grent.pm b/lib/User/grent.pm index deb0a8d1be..e4e226d119 100644 --- a/lib/User/grent.pm +++ b/lib/User/grent.pm @@ -74,7 +74,7 @@ to $gr_gid if you import the fields. Array references are available as regular array variables, so C<@{ $group_obj-E<gt>members() }> would be simply @gr_members. -The getpw() funtion is a simple front-end that forwards +The getpw() function is a simple front-end that forwards a numeric argument to getpwuid() and the rest to getpwnam(). To access this functionality without the core overrides, diff --git a/lib/User/pwent.pm b/lib/User/pwent.pm index 32301cadfc..bb2dace682 100644 --- a/lib/User/pwent.pm +++ b/lib/User/pwent.pm @@ -84,7 +84,7 @@ variables named with a preceding C<pw_> in front their method names. Thus, C<$passwd_obj-E<gt>shell()> corresponds to $pw_shell if you import the fields. -The getpw() funtion is a simple front-end that forwards +The getpw() function is a simple front-end that forwards a numeric argument to getpwuid() and the rest to getpwnam(). To access this functionality without the core overrides, |