File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ matrix:
17
17
elixir : 1.6
18
18
- otp_release : 19.3
19
19
elixir : 1.5
20
- - otp_release : 18.3
20
+ - otp_release : 19.0
21
21
elixir : 1.4
22
22
23
23
install :
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ defprotocol Jason.Encoder do
22
22
end
23
23
24
24
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:
26
26
27
27
defimpl Jason.Encoder, for: Test do
28
28
def encode(value, opts) do
@@ -31,7 +31,7 @@ defprotocol Jason.Encoder do
31
31
end
32
32
33
33
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 :
35
35
36
36
defimpl Jason.Encoder, for: Test do
37
37
def encode(value, opts) do
You can’t perform that action at this time.
0 commit comments