[DOC] Rename "GC module" to "GC library" in NEWS.md

This commit is contained in:
Peter Zhu 2024-12-03 13:44:17 -05:00
parent e20904d7cf
commit 8fd65cd870

View File

@ -288,11 +288,11 @@ details of the default gems or bundled gems.
* Array#each is rewritten in Ruby for better performance [[Feature #20182]].
* Alternative GC implementations can be loaded dynamically. Configure Ruby
`--with-shared-gc` to enable. Alternative GC modules can be loaded at runtime
`--with-shared-gc` to enable. Alternative GC libraries can be loaded at runtime
using the environment variable `RUBY_GC_LIBRARY`. [[Feature #20351]],
[[Feature #20470]]
* An experimental GC module is provided based on MMTk. Configure Ruby
* An experimental GC library is provided based on MMTk. Configure Ruby
`--with-shared-gc`, build as normal, then build the GC library: `make
shared-gc SHARED_GC=mmtk`. Enable with `RUBY_GC_LIBRARY=mmtk`. This
requires a working Rust compiler, and Cargo on the build machine.