Skip to content

Commit 1d0423c

Browse files
fxnwhatyouhide
authored andcommitted
Small edits in CHANGELOG.md (#7879)
[ci skip]
1 parent 69c0844 commit 1d0423c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ We recommend Elixir libraries that previously hooked into Erlang's `:error_logge
4646

4747
## Other Logger improvements
4848

49-
Previously, Logger macros such as `debug`, `info`, and so on would always evaluate its arguments, even when nothing would be logged. From Elixir v1.7, the arguments are only evaluated when the message is logged.
49+
Previously, Logger macros such as `debug`, `info`, and so on would always evaluate their arguments, even when nothing would be logged. From Elixir v1.7, the arguments are only evaluated when the message is logged.
5050

5151
The Logger configuration system also accepts a new option called `:compile_time_purge_matching` that allows you to remove log calls with specific compile-time metadata. For example, to remove all logger calls from application `:foo` with level lower than `:info`, as well as remove all logger calls from `Bar.foo/3`, you can use the following configuration:
5252

@@ -62,7 +62,7 @@ config :logger,
6262

6363
ExUnit has also seen its own share of improvements. Assertions such as `assert some_fun(arg1, arg2, arg3)` will now include the value of each argument in the failure report:
6464

65-
```elixir
65+
```
6666
1) test function call arguments (TestOneOfEach)
6767
lib/ex_unit/examples/one_of_each.exs:157
6868
Expected truthy, got false
@@ -176,8 +176,8 @@ Percentage | Module
176176
#### Elixir
177177

178178
* [IO.ANSI.Docs] Fix table column alignment when converting docs to ANSI escapes
179-
* [Code] Ensure `string_to_quoted` return error tuples instead of raising in certain constructs
180-
* [Code.Formatter] Consistently format keyword lists in functions calls with and without parens
179+
* [Code] Ensure `string_to_quoted` returns error tuples instead of raising in certain constructs
180+
* [Code.Formatter] Consistently format keyword lists in function calls with and without parens
181181
* [Code.Formatter] Do not break after `->` when there are only comments and one-line clauses
182182
* [Kernel] Raise on unsafe variables as some of the code emitted with unsafe variables would not correctly propagate variables or would disable tail call optimization semantics
183183
* [Kernel] Do not crash on dynamic sizes in binary generators with collectable into in comprehensions
@@ -187,17 +187,17 @@ Percentage | Module
187187
#### ExUnit
188188

189189
* [ExUnit.Case] Raise proper error if `@tag` and `@moduletag` are used before `use ExUnit.Case`
190-
* [ExUnit.Case] Raise proper error if `@describetag` is used outside of describe
190+
* [ExUnit.Case] Raise proper error if `@describetag` is used outside of `describe/2` blocks
191191
* [ExUnit.DocTest] Emit proper assertion error on doctests with invalid UTF-8
192192

193193
#### Mix
194194

195-
* [mix archive.install] Fetch optional dependencies when installing an archive from git/hex
195+
* [mix archive.install] Fetch optional dependencies when installing an archive from Git/Hex
196196
* [mix compile] Properly track config files in umbrella projects and recompile when any relevant umbrella configuration changes
197197
* [mix deps] Ensure the same dependency from different SCMs are tagged as diverged when those SCMs are remote and non-remote
198198
* [mix deps] Ensure we re-run dependency resolution when overriding a skipped dep in umbrella
199199
* [mix deps.compile] Perform clean builds for dependencies on outdated locks to avoid old modules from affecting future compilation
200-
* [mix escript.install] Fetch optional dependencies when installing an escript from git/hex
200+
* [mix escript.install] Fetch optional dependencies when installing an escript from Git/Hex
201201

202202
### 3. Soft-deprecations (no warnings emitted)
203203

0 commit comments

Comments
 (0)