diff options
author | kyontan <[email protected]> | 2025-03-08 06:18:25 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2025-03-07 16:18:25 -0500 |
commit | 3c92fe13f83c458991349a9b77963c90027fe53b (patch) | |
tree | 9b950b4820b78d976074d2169cb14dc79be0bb47 /man | |
parent | 17f6a689629ec3507a79fc156833f329dc641bed (diff) |
[DOC] Fix minor miscalculation of stack size
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/12872
Merged-By: XrXr
Diffstat (limited to 'man')
-rw-r--r-- | man/ruby.1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/man/ruby.1 b/man/ruby.1 index 5bcfef44b8..28d7ddadfa 100644 --- a/man/ruby.1 +++ b/man/ruby.1 @@ -706,11 +706,11 @@ All values are specified in bytes. .Bl -hang -compact -width "RUBY_THREAD_MACHINE_STACK_SIZE" .It Ev RUBY_THREAD_VM_STACK_SIZE VM stack size used at thread creation. -default: 524288 (32-bit CPU) or 1048575 (64-bit) +default: 524288 (32-bit CPU) or 1048576 (64-bit) .Pp .It Ev RUBY_THREAD_MACHINE_STACK_SIZE Machine stack size used at thread creation. -default: 524288 or 1048575 +default: 524288 or 1048576 .Pp .It Ev RUBY_FIBER_VM_STACK_SIZE VM stack size used at fiber creation. |