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 | |
parent | f3a6e3356179a29b3e34d4dbbd1c3cc37167e95d (diff) | |
download | perl-ae83f3772b2dd371e676035c6714025e89d7e08f.tar.gz |
More doc fixes from Abigail.
p4raw-id: //depot/cfgperl@2587
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Time/gmtime.pm | 2 | ||||
-rw-r--r-- | lib/Time/localtime.pm | 2 | ||||
-rw-r--r-- | lib/User/grent.pm | 2 | ||||
-rw-r--r-- | lib/User/pwent.pm | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/lib/Time/gmtime.pm b/lib/Time/gmtime.pm index c1d11d74db..9b823f601e 100644 --- a/lib/Time/gmtime.pm +++ b/lib/Time/gmtime.pm @@ -69,7 +69,7 @@ still overrides your core functions.) Access these fields as variables named with a preceding C<tm_> in front their method names. Thus, C<$tm_obj-E<gt>mday()> corresponds to $tm_mday if you import the fields. -The gmctime() funtion provides a way of getting at the +The gmctime() function provides a way of getting at the scalar sense of the original CORE::gmtime() function. To access this functionality without the core overrides, diff --git a/lib/Time/localtime.pm b/lib/Time/localtime.pm index 9437752597..18a36c7fb9 100644 --- a/lib/Time/localtime.pm +++ b/lib/Time/localtime.pm @@ -65,7 +65,7 @@ variables named with a preceding C<tm_> in front their method names. Thus, C<$tm_obj-E<gt>mday()> corresponds to $tm_mday if you import the fields. -The ctime() funtion provides a way of getting at the +The ctime() function provides a way of getting at the scalar sense of the original CORE::localtime() function. To access this functionality without the core overrides, 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, |