From 97cdbbe7d85ab2c95d13146ca3030fbf946f76da Mon Sep 17 00:00:00 2001 From: Nevroz Arslan Date: Wed, 3 Sep 2025 02:45:22 +0300 Subject: [PATCH] Fix wording in Task docs about Ancestor --- lib/elixir/lib/task.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/elixir/lib/task.ex b/lib/elixir/lib/task.ex index ec881c4450a..e79b8bd1022 100644 --- a/lib/elixir/lib/task.ex +++ b/lib/elixir/lib/task.ex @@ -228,7 +228,7 @@ defmodule Task do ## Ancestor and Caller Tracking - Whenever you start a new process, Elixir annotates the parent of that process + Whenever you start a new process, Elixir annotates the process with the parent through the `$ancestors` key in the process dictionary. This is often used to track the hierarchy inside a supervision tree.