From 83f788dcd30bbd00122e6f311f97a6ef35849f78 Mon Sep 17 00:00:00 2001 From: Eksperimental Date: Fri, 9 May 2025 13:02:49 -0500 Subject: [PATCH] Fix warnings due to incorrect links in docs detected by ExDoc --- CHANGELOG.md | 6 +++--- lib/elixir/lib/node.ex | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 539338c2699..0a7fb2c58f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -164,7 +164,7 @@ These additions offer greater transparency into the components and licenses of e * [Kernel] Allow controlling which applications are used during inference * [Kernel] Support `min/2` and `max/2` as guards * [Kernel.ParallelCompiler] Add `each_long_verification_threshold` which invokes a callback when type checking a module takes too long - * [Macro] Print debugging results from `Macro.dbg/1` as they happen, instead of once at the end + * [Macro] Print debugging results from `Macro.dbg/3` as they happen, instead of once at the end * [Module] Do not automatically load modules after their compilation, guaranteeing a more consistent compile time experience and drastically improving compilation times * [Protocol] Type checking of protocols dispatch and implementations * [Regex] Add `Regex.to_embed/2` which returns an embeddable representation of regex in another regex @@ -185,7 +185,7 @@ These additions offer greater transparency into the components and licenses of e * [mix] Add support for `MIX_PROFILE_FLAGS` to configure `MIX_PROFILE` * [mix compile] Debug the compiler and type checker PID when `MIX_DEBUG=1` and compilation/verification thresholds are met - * [mix compile] Add `Mix.Tasks.Compile.reenable/1` + * [mix compile] Add `Mix.Tasks.Compiler.reenable/1` * [mix deps.compile] Support `MIX_OS_DEPS_COMPILE_PARTITION_COUNT` for compiling deps concurrently across multiple operating system processes * [mix help] Add `mix help Mod`, `mix help :mod`, `mix help Mod.fun` and `mix help Mod.fun/arity` * [mix test] Allow to distinguish the exit status between warnings as errors and test failures @@ -199,7 +199,7 @@ These additions offer greater transparency into the components and licenses of e * [DateTime] Do not truncate microseconds regardless of precision in `DateTime.diff/3` * [File] Properly handle permissions errors cascading from parent in `File.mkdir_p/1` * [Regex] Fix `Regex.split/2` returning too many results when the chunk being split on was empty (which can happen when using features such as `/K`) - * [Stream] Ensure `Stream.transform/1` respects suspend command when its inner stream halts + * [Stream] Ensure `Stream.transform/5` respects suspend command when its inner stream halts * [URI] Several fixes to `URI.merge/2` related to trailing slashes, trailing dots, and hostless base URIs #### Mix diff --git a/lib/elixir/lib/node.ex b/lib/elixir/lib/node.ex index c81c745c03b..98728ed6b7c 100644 --- a/lib/elixir/lib/node.ex +++ b/lib/elixir/lib/node.ex @@ -92,7 +92,7 @@ defmodule Node do Turns a distributed node into a non-distributed node. For other nodes in the network, this is the same as the node going down. - Only possible when the node was started with `Node.start/3`, otherwise + Only possible when the node was started with `Node.start/2`, otherwise returns `{:error, :not_allowed}`. Returns `{:error, :not_found}` if the local node is not alive. """