summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorWojtek Mach <wojtekmach@users.noreply.github.com>2021-03-16 13:48:56 +0100
committerGitHub <noreply@github.com>2021-03-16 13:48:56 +0100
commitc3ba6d8a23d6aa8ff092670b93ab027224286acc (patch)
treeea9d63295e8511e0e90acb677066f83f3144ac1f /CHANGELOG.md
parent225d53612997287a8e3f7ac0e958a2842d0da0e5 (diff)
downloadelixir-c3ba6d8a23d6aa8ff092670b93ab027224286acc.tar.gz
Fix broken docs references (#10798)
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d3446197c..a8bb95b96 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -76,7 +76,7 @@
* [Kernel] Do not crash when complex literals (binaries and maps) are used in guards
* [Kernel] Properly parse keywords (such as `end`) followed by the `::` operator
* [Macro] `Macro.decompose_call/1` now also consider tuples with more than 2 elements to not be valid calls
- * [Macro] Fix `Macro.underscore/2` for digit preceded by capitals: "FOO10" now becomes "foo10" instead of "fo_o123"
+ * [Macro] Fix `Macro.underscore/1` for digit preceded by capitals: "FOO10" now becomes "foo10" instead of "fo_o123"
* [OptionParser] Properly parse when numbers follow-up aliases, for example, `-ab3` is now parsed as `-a -b 3`
* [Path] Fix `Path.relative_to/2` when referencing self
* [Task] Ensure `Task.async_stream/2` with `ordered: false` discard results as they are emitted, instead of needlessly accumulating inside the stream manager