Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #125

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
- Elixir version requirement increased to Elixir 1.8+
- ETS table normalization for performance improvements over 0.5.x releases
- .ets release files now have contents with a different structure
- Because of the different structre the .ets files now have a different file ending. E.g.: 2019a.v2.ets
- Because of the different structure the .ets files now have a different file ending. E.g.: 2019a.v2.ets

### Added

Expand Down
2 changes: 1 addition & 1 deletion lib/tzdata/util.ex
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ defmodule Tzdata.Util do
end

@doc """
Given a string of a Rule "AT" column return a tupple of a erlang style
Given a string of a Rule "AT" column return a tuple of a erlang style
time tuple and a modifier that can be either :wall, :standard or :utc

## Examples
Expand Down
2 changes: 1 addition & 1 deletion test/tz_util_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ defmodule UtilTest do
assert TzUtil.last_weekday_of_month(2014, 8, 4) == 28
# last sunday of Aug 2014 should be on the 31st
assert TzUtil.last_weekday_of_month(2014, 8, 7) == 31
# should also accept string with english abbrevations of weekdays
# should also accept string with english abbreviations of weekdays
assert TzUtil.last_weekday_of_month(2014, 8, "sun") == 31
assert TzUtil.last_weekday_of_month(2014, 8, "thu") == 28
end
Expand Down