Skip to content

Commit

Permalink
Merge pull request #442 from kianmeng/fix-typos
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
jeremyjh committed Sep 22, 2021
2 parents 334ef02 + ac3f648 commit 02f0e15
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -265,7 +265,7 @@ For example, in a project where `mix dialyzer --format dialyzer` outputs:

```
Proceeding with analysis...
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
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
config.ex:79: Guard test is_binary(_@5::#{'__exception__':='true', '__struct__':=_, _=>_}) can never succeed
config.ex:79: Guard test is_atom(_@6::#{'__exception__':='true', '__struct__':=_, _=>_}) can never succeed
done in 0m1.32s
Expand All @@ -283,7 +283,7 @@ And then run `mix dialyzer` would output:

```
Proceeding with analysis...
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
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
done in 0m1.32s
done (warnings were emitted)
```
Expand Down
2 changes: 1 addition & 1 deletion test/dialyxir/formatter_test.exs
Expand Up @@ -53,7 +53,7 @@ defmodule Dialyxir.FormatterTest do
end)
end

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

0 comments on commit 02f0e15

Please sign in to comment.