Skip to content

Commit ac3f648

Browse files
committed
Fix typos
1 parent 334ef02 commit ac3f648

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ For example, in a project where `mix dialyzer --format dialyzer` outputs:
265265

266266
```
267267
Proceeding with analysis...
268-
config.ex:64: The call ets:insert('Elixir.MyApp.Config',{'Elixir.MyApp.Config',_}) might have an unintended effect due to a possible race condition caused by its combination withthe ets:lookup('Elixir.MyApp.Config','Elixir.MyApp.Config') call in config.ex on line 26
268+
config.ex:64: The call ets:insert('Elixir.MyApp.Config',{'Elixir.MyApp.Config',_}) might have an unintended effect due to a possible race condition caused by its combination with the ets:lookup('Elixir.MyApp.Config','Elixir.MyApp.Config') call in config.ex on line 26
269269
config.ex:79: Guard test is_binary(_@5::#{'__exception__':='true', '__struct__':=_, _=>_}) can never succeed
270270
config.ex:79: Guard test is_atom(_@6::#{'__exception__':='true', '__struct__':=_, _=>_}) can never succeed
271271
done in 0m1.32s
@@ -283,7 +283,7 @@ And then run `mix dialyzer` would output:
283283

284284
```
285285
Proceeding with analysis...
286-
config.ex:64: The call ets:insert('Elixir.MyApp.Config',{'Elixir.MyApp.Config',_}) might have an unintended effect due to a possible race condition caused by its combination withthe ets:lookup('Elixir.MyApp.Config','Elixir.MyApp.Config') call in config.ex on line 26
286+
config.ex:64: The call ets:insert('Elixir.MyApp.Config',{'Elixir.MyApp.Config',_}) might have an unintended effect due to a possible race condition caused by its combination with the ets:lookup('Elixir.MyApp.Config','Elixir.MyApp.Config') call in config.ex on line 26
287287
done in 0m1.32s
288288
done (warnings were emitted)
289289
```

test/dialyxir/formatter_test.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ defmodule Dialyxir.FormatterTest do
5353
end)
5454
end
5555

56-
test "lists unnecessary skips as warnings if ignoreing exit status " do
56+
test "lists unnecessary skips as warnings if ignoring exit status " do
5757
warning =
5858
{:warn_return_no_exit, {'a/regex_file.ex', 17},
5959
{:no_return, [:only_normal, :format_long, 1]}}

0 commit comments

Comments
 (0)