summaryrefslogtreecommitdiffhomepage
path: root/doc/mruby3.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/mruby3.md')
-rw-r--r--doc/mruby3.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/mruby3.md b/doc/mruby3.md
index d5218428e..cf103e428 100644
--- a/doc/mruby3.md
+++ b/doc/mruby3.md
@@ -77,8 +77,9 @@ to be default `mrb_value` representation. Now the default is
Pack `mrb_value` in an `intptr_t` integer. Consumes less
memory compared to `MRB_NO_BOXING` especially on 32-bit
-platforms. `Fixnum` size is 31 bits, so some integer values
-does not fit in `Fixnum` integers.
+platforms. Inlined integer size is 31 bits, so some `mrb_int`
+values does not fit in `mrb_value`. Those integers are allocated
+in the object heap as `struct RInteger`.
## `MRB_NAN_BOXING`