Skip to content

Commit

Permalink
Spelling Fixes + Bump Travis Erlang Version (#90)
Browse files Browse the repository at this point in the history
* fix spelling

* erlang 18.3 is no longer available, bump to 19

https://travis-ci.community/t/erlang-18-3-couldnt-be-pulled/3836
  • Loading branch information
arghmeleg authored and michalmuskala committed Sep 13, 2019
1 parent 07d5d8a commit d708e34
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ matrix:
elixir: 1.6
- otp_release: 19.3
elixir: 1.5
- otp_release: 18.3
- otp_release: 19.0
elixir: 1.4

install:
Expand Down
4 changes: 2 additions & 2 deletions lib/encoder.ex
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ defprotocol Jason.Encoder do
end
If we were to call `@derive Jason.Encoder` just before `defstruct`,
an implementaion similar to the follwing implementation would be generated:
an implementation similar to the following implementation would be generated:
defimpl Jason.Encoder, for: Test do
def encode(value, opts) do
Expand All @@ -31,7 +31,7 @@ defprotocol Jason.Encoder do
end
If we called `@derive {Jason.Encoder, only: [:foo]}`, an implementation
similar to the following implementation would be genrated:
similar to the following implementation would be generated:
defimpl Jason.Encoder, for: Test do
def encode(value, opts) do
Expand Down

0 comments on commit d708e34

Please sign in to comment.