Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/Date/Format.pm
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ sub wkyr {
}

##
## these 6 formatting routins need to be *copied* into the language
## these 6 formatting routines need to be *copied* into the language
## specific packages
##

Expand Down Expand Up @@ -269,7 +269,7 @@ __END__

=head1 NAME

Date::Format - Date formating subroutines
Date::Format - Date formatting subroutines

=head1 SYNOPSIS

Expand Down Expand Up @@ -322,7 +322,7 @@ conversion specification C<"%a %b %e %T %Y\n">

=head1 MULTI-LANGUAGE SUPPORT

Date::Format is capable of formating into several languages by creating
Date::Format is capable of formatting into several languages by creating
a language specific object and calling methods, see L<Date::Language>

my $lang = Date::Language->new('German');
Expand Down
3 changes: 1 addition & 2 deletions lib/Date/Language.pm
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ __END__

=head1 NAME

Date::Language - Language specific date formating and parsing
Date::Language - Language specific date formatting and parsing

=head1 SYNOPSIS

Expand Down Expand Up @@ -142,4 +142,3 @@ See L<Date::Parse/str2time>
See L<Date::Parse/strptime>

=back

2 changes: 1 addition & 1 deletion lib/Date/Language/Greek.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Traditional date format is: DoW DD{eta} MoY Year (%A %o %B %Y)
##
## Matthew Musgrove <muskrat@mindless.com>
## Translations gratiously provided by Menelaos Stamatelos <men@kwsn.net>
## Translations graciously provided by Menelaos Stamatelos <men@kwsn.net>
## This module returns unicode (utf8) encoded characters. You will need to
## take the necessary steps for this to display correctly.
##
Expand Down
2 changes: 1 addition & 1 deletion lib/Date/Language/Hungarian.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# This is a just-because-I-stumbled-across-it
# -and-my-wife-is-Hungarian release: if Graham or
# someone adds to docs to Date::Format, I'd be
# glad to correct bugs and extend as neeed.
# glad to correct bugs and extend as needed.
#

package Date::Language::Hungarian;
Expand Down
6 changes: 3 additions & 3 deletions lib/Time/Zone.pm
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ Time::Zone -- miscellaneous timezone manipulations routines
This is a collection of miscellaneous timezone manipulation routines.

C<tz2zone()> parses the TZ environment variable and returns a timezone
string suitable for inclusion in L<date(1)>-like output. It opionally takes
string suitable for inclusion in L<date(1)>-like output. It optionally takes
a timezone string, a time, and a is-dst flag.

C<tz_local_offset()> determins the offset from GMT time in seconds. It
C<tz_local_offset()> determines the offset from GMT time in seconds. It
only does the calculation once.

C<tz_offset()> determines the offset from GMT in seconds of a specified
Expand Down Expand Up @@ -132,7 +132,7 @@ sub calc_off
} elsif ($l[7] == $g[7] - 1) {
$off -= 86400;
} elsif ($l[7] < $g[7]) {
# crossed over a year boundry!
# crossed over a year boundary!
# localtime is beginning of year, gmt is end
# therefore local is ahead
$off += 86400;
Expand Down