summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorTom Crossland <tom.crossland@gmail.com>2021-03-23 22:59:39 +0100
committerGitHub <noreply@github.com>2021-03-23 22:59:39 +0100
commit1e318f7d29bd8512e1d0564e0cc270f32d9179be (patch)
treebe80b8bb8502894b689bbb66db408e74ea5278a8 /CHANGELOG.md
parentdedbfc8b3f76043f32ef9d71fb7f8f67b44cba70 (diff)
downloadelixir-1e318f7d29bd8512e1d0564e0cc270f32d9179be.tar.gz
Fix typo in CHANGELOG.md [no ci] (#10809)
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 a8bb95b96..df55c6809 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/1` 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_o10"
* [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