File 0271-Fix-documentation.patch of Package erlang
From 35e776e15907e47a8a8797beafb73aefabc9bb4f Mon Sep 17 00:00:00 2001
From: Rickard Green <rickard@erlang.org>
Date: Wed, 12 Mar 2025 16:53:22 +0100
Subject: [PATCH] Fix documentation
---
erts/preloaded/ebin/erlang.beam | Bin 40412 -> 40412 bytes
erts/preloaded/src/erlang.erl | 5 ++++-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/erts/preloaded/src/erlang.erl b/erts/preloaded/src/erlang.erl
index b1a38875ef..79cd64943c 100644
--- a/erts/preloaded/src/erlang.erl
+++ b/erts/preloaded/src/erlang.erl
@@ -6032,7 +6032,10 @@ start_timer(_Time, _Dest, _Msg, _Options) ->
-doc """
Increases the suspend count on the process identified by `Suspendee` and puts it
in the suspended state if it is not already in that state. A suspended process
-is not scheduled for execution until the process has been resumed.
+is not scheduled for execution until the process has been resumed. If the
+suspended process currently is waiting in a `receive ... after` expression, the
+timer for the timeout will, as of OTP 28.0, also be suspended until the process
+is resumed.
A process can be suspended by multiple processes and can be suspended multiple
times by a single process. A suspended process does not leave the suspended
--
2.43.0