summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKuba Suder <mackuba@users.noreply.github.com>2026-01-28 04:48:37 +0200
committerGitHub <noreply@github.com>2026-01-28 02:48:37 +0000
commitbea48adbcacc29cce9536977e15ceba0d65c8a02 (patch)
tree26a2547ee68fd117717c76a25b0738aeaab4c70c
parent5eb17ea4aae32d657c1816de64acd3ef7abb454f (diff)
[DOC] fixed pid shown in the doc comment on fork
-rw-r--r--process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/process.c b/process.c
index 19f3172cb8..006611d525 100644
--- a/process.c
+++ b/process.c
@@ -4233,7 +4233,7 @@ rb_proc__fork(VALUE _obj)
* puts "Before the fork: #{Process.pid}"
* fork do
* puts "In the child process: #{Process.pid}"
- * end # => 382141
+ * end # => 420520
* puts "After the fork: #{Process.pid}"
*
* Output: