Skip to content

Commit d708e34

Browse files
arghmelegmichalmuskala
authored andcommitted
Spelling Fixes + Bump Travis Erlang Version (michalmuskala#90)
* fix spelling * erlang 18.3 is no longer available, bump to 19 https://travis-ci.community/t/erlang-18-3-couldnt-be-pulled/3836
1 parent 07d5d8a commit d708e34

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ matrix:
1717
elixir: 1.6
1818
- otp_release: 19.3
1919
elixir: 1.5
20-
- otp_release: 18.3
20+
- otp_release: 19.0
2121
elixir: 1.4
2222

2323
install:

lib/encoder.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ defprotocol Jason.Encoder do
2222
end
2323
2424
If we were to call `@derive Jason.Encoder` just before `defstruct`,
25-
an implementaion similar to the follwing implementation would be generated:
25+
an implementation similar to the following implementation would be generated:
2626
2727
defimpl Jason.Encoder, for: Test do
2828
def encode(value, opts) do
@@ -31,7 +31,7 @@ defprotocol Jason.Encoder do
3131
end
3232
3333
If we called `@derive {Jason.Encoder, only: [:foo]}`, an implementation
34-
similar to the following implementation would be genrated:
34+
similar to the following implementation would be generated:
3535
3636
defimpl Jason.Encoder, for: Test do
3737
def encode(value, opts) do

0 commit comments

Comments
 (0)